Un bout de configuration d'un site sous Nginx pour inclure le fichier de configuration SSL
server { | |
listen 443 ssl http2; | |
root /le repertoire de votre site; | |
index index.php index.html index.htm; | |
server_name votresite.com; | |
ssl_certificate /etc/letsencrypt/live/votresite.com/fullchain.pem; | |
ssl_certificate_key /etc/letsencrypt/live/votresite.com/privkey.pem; | |
include snippets/votrefichierssl.conf; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment