Debian


informatique
Installer un certificat SSL let’s encrypt sur un reverse proxy nginx

Bonjour à tous, Dans cet article, nous allons apprendre à installer, configurer puis renouveller automatiquement un certificat SSL let’s encrypt ...

informatique
Installer l’extension postgis

wget http://download.osgeo.org/proj/proj-4.8.0.tar.gz tar -xvzf proj-4.8.0.tar.gz ./configure make make install wget http://download.osgeo.org/geos/geos-3.3.7.tar.bz2 tar -xvzf geos-3.3.7.tar.bz2 ./configure make make install apt-get install ...

informatique
Postfix – Configurer le protocole TLS

Génération du certificat : cd /etc/postfix mkdir -p tls cd /tls openssl req -new -x509 -days 3650 -nodes -out /etc/postfix/tls/mondomaine.pem ...

informatique
Postfix – Installer OpenDKIM multi-domaines

Installation : apt-get install opendkim opendkim-tools Configuration: nano /etc/opendkim.conf KeyTable /etc/opendkim/KeyTable SigningTable /etc/opendkim/SigningTable ExternalIgnoreList /etc/opendkim/TrustedHosts InternalHosts /etc/opendkim/TrustedHosts mkdir -p /etc/opendkim ...

informatique
Debian – Installer tomcat

Version de Debian : 8 Version de Tomcat: 8 Prérequis : Java JDK installé : Debian 8 – Installer java ...

informatique
Debian 8 – Installer java JDK

Téléchargement des sources java tar.gz : http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html Copie du fichier .tar.gz dans /src Décompression de l’archive : cd /opt/jdk tar ...

informatique
Debian – installer un serveur NFS

Côté serveur (192.168.1.1): apt-get update apt-get install nfs-kernel-server nfs-common mkdir -p /var/share nano /etc/exports /var/share 192.168.1.2(rw,root_squash,anonuid=1000,anongid=1000,sync) /etc/init.d/nfs-kernel-server start exportfs -a ...