A voir également:
- Protocol http servi sur port 443
- Http - Guide
- Http //192.168.l.l - Guide
- Port ping ✓ - Forum Réseaux sociaux
- Port icmp ✓ - Forum Réseau
- Http //cast2tv.net/ - Forum TV & Vidéo
1 réponse
Bonjour,
Normalement
1) Installation d'apache
2) Activer SSL
3) Installer Let's Encrypt / certbot :
4) Lancer certbot :
(choisir le vhost http à passer en https)
5) Tester (en admettant que le site soit https://www.toto.com) :
https://www.ssllabs.com/ssltest/analyze.html?d=www.toto.com
6) Activer le renouvellement automatique du certificat :
7) Si tout va bien :
Bonne chance
Normalement
certbots'occupe de générer le vhost pour toi. Voici comment je l'ai installé de mon côté (tout en root ou précédé de
sudo)
1) Installation d'apache
sudo apt update
sudo apt install apache2 default-mysql-server libapache2-mod-php
2) Activer SSL
a2enmod ssl
service apache2 restart
3) Installer Let's Encrypt / certbot :
apt update
apt install certbot python-certbot-apache
4) Lancer certbot :
certbot --apache
(choisir le vhost http à passer en https)
5) Tester (en admettant que le site soit https://www.toto.com) :
https://www.ssllabs.com/ssltest/analyze.html?d=www.toto.com
6) Activer le renouvellement automatique du certificat :
certbot renew --dry-run
7) Si tout va bien :
certbot renew --quiet
Bonne chance