Bonjour à tous et à toutes.
Quand je fais : openssl s_client -connect ignace72.eu:443
Dans la sortie, j’ai :
New, TLSv1.3, Cipher is TLS_AES_256_GCM_SHA384
Server public key is 384 bit
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
No ALPN negotiated
Early data was not sent
Verify return code: 0 (ok)
Quelqu’un peut me dire ce j’ai fait de mal pour avoir :
Secure Renegotiation IS NOT supported
Compression: NONE
No ALPN negotiated
J’utilise Nginx 1.18 et un certificat Let’s Encrypt.
Ma configuration SSL de Nginx :
server {
server_name ignace72.eu;
listen 443 ssl http2;
ssl_protocols TLSv1.3;
ssl_certificate /etc/letsencrypt/live/ignace72.eu/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/ignace72.eu/privkey.pem; # managed by Certbot
ssl_trusted_certificate /etc/letsencrypt/live/ignace72.eu/chain.pem;
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
ssl_ecdh_curve secp384r1;
ssl_ciphers EECDH+AESGCM:EECDH+CHACHA20:EECDH+AES;
ssl_prefer_server_ciphers on;
ssl_stapling on;
ssl_stapling_verify on;
resolver 1.1.1.1 1.0.0.1 valid=300s;
resolver_timeout 5s;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 5m;
Merci à vous.