Linux


informatique
Installer Clam AV Antivirus Centos 7

yum install epel-release yum -y install clamav-server clamav-data clamav-update clamav-filesystem clamav clamav-scanner-systemd clamav-devel clamav-lib clamav-server-systemdMise à jour de l'antivirus : ...

informatique
Quelques commandes postfix

Voici quelques commandes postfix utiles, notamment pour contrôler les emails en attente d’envoi dans la queue : Afficher les emails ...

informatique
Tester sa bande passante en ligne de commande linux

Bonjour à tous, Grâce à cette commande, vous pouvez effectuer un speed test en ligne de commande : curl -s ...

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 ...