11-08-2017, 11:18 AM
(Modification du message : 11-08-2017, 11:23 AM par Sephi-Chan.)
Peut-être moi qui bidouille au même moment, car ça ne me dit rien du tout.
Par contre ça m'agace j'ai une redirection qui ne marche pas via curl (et les outils de tests comme http://www.redirect-checker.org/) :
curl https://jeuweb.org
curl: (60) SSL certificate problem: Invalid certificate chain
More details here: https://curl.haxx.se/docs/sslcerts.html
Alors que la configuration de Nginx devrait couvrir ce cas :
Ça fonctionne correctement quand je demande le domaine principal (sans www donc) en HTTP :
curl http://jeuweb.org
Par contre ça m'agace j'ai une redirection qui ne marche pas via curl (et les outils de tests comme http://www.redirect-checker.org/) :
curl https://jeuweb.org
curl: (60) SSL certificate problem: Invalid certificate chain
More details here: https://curl.haxx.se/docs/sslcerts.html
Alors que la configuration de Nginx devrait couvrir ce cas :
Code :
server {
listen 80;
listen 443 ssl;
server_name jeuweb.org;
return 301 https://www.jeuweb.org$request_uri;
ssl_certificate /etc/letsencrypt/live/www.jeuweb.org/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/www.jeuweb.org/privkey.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers EECDH+AESGCM:EECDH+AES;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
add_header Strict-Transport-Security "max-age=31536000;";
}
Ça fonctionne correctement quand je demande le domaine principal (sans www donc) en HTTP :
curl http://jeuweb.org
Code :
<html>
<head><title>301 Moved Permanently</title></head>
<body bgcolor="white">
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx/1.12.1</center>
</body>
</html>