nginx 安全性 TLS 設定導致 SSL_ERROR_NO_CYPHER_OVERLAP

nginx 安全性 TLS 設定導致 SSL_ERROR_NO_CYPHER_OVERLAP

我按照 01/2018 的指南來強化我的 nginx 1.10.3 TLS 配置。

現在我正在SSL_ERROR_NO_CYPHER_OVERLAP使用 Firefox 66.0.1 並且https://www.ssllabs.com/ssltestAssessment failed: Failed to communicate with the secure server

這是當前的配置。 nginx -t是成功的。

server {
    listen 80;
    listen [::]:80;
    server_name domain.tld;
    return 301 https://$host$request_uri;
}

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    server_name domain.tld;
    root /var/www/domain.tld;
    index index.html;

    ssl_certificate /etc/letsencrypt/live/domain.tld/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/domain.tld/privkey.pem;
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
    ssl_protocols TLSv1.2;
    ssl_ciphers ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-SHA;
    ssl_prefer_server_ciphers on;
    ssl_session_timeout 1d;
    ssl_session_cache shared:SSL:50m;
    ssl_session_tickets off;
    ssl_stapling on;
    ssl_stapling_verify on;
    ssl_trusted_certificate /etc/letsencrypt/live/domain.tld/chain.pem;        
    # add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";

    server_tokens off;

    location / {
        try_files $uri $uri/ =404;
    }
}

答案1

關於您的證書一無所知,但我猜測您使用的是 RSA 證書,因為這仍然是最常見的證書。只是,您的密碼都是 *-ECDSA-* 密碼,需要 ECC 憑證。

我建議您簡單地使用推薦設置,而不是想出自己的安全變體,並且無法理解它到底有多安全以及它有什麼副作用。Mozilla SSL 設定產生器

相關內容