gpt4 book ai didi

nginx - 如何为 NGINX 配置选择正确的密码

转载 作者:行者123 更新时间:2023-12-04 09:41:08 24 4
gpt4 key购买 nike

我是 nginx 的新手,最近我决定更改配置文件以将我的应用程序从 http 重定向到 https 使用返回语句 return 301 https://$host$request_uri;。这一切都很好,直到我注意到我们没有通过 Twilio API 接收短信。我决定调试该问题,发现我收到了 SSL/TLS 握手错误

查看调试器,我发现他们认为这是问题的可能原因:

Incompatible cipher suites in use by the client and the server. This would require the client to use (or enable) a cipher suite that is supported by the server.

查看 nginx 配置文件,我注意到没有使用密码,这可能是问题的根源,而不是因为未启用 TLS 查看下面的配置:

server {
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
server_name localhost;

ssl_certificate "/etc/nginx/ssl/domain-crt.txt";
ssl_certificate_key "/etc/nginx/ssl/domain-key.txt";
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;

## More configuration below this...
}

Twilio 有一个支持的密码列表,可以在 here 中找到,但我不确定如何在我的配置文件中执行此操作。由于我的协议(protocol)包括 TLSv1、TLSv1.1 和 TLS1.2,我是否应该使用所有这些协议(protocol)?或者我只使用列表中的其中一个。我真的很困惑我需要在我的 ssl_ciphers 变量中设置什么。

我还读到在 ssl_protocols 中启用 SSLv3 是个坏主意。我能否将其从 ssl_protocols 中删除并保存配置,而不会导致重大问题?

如果有人能帮我回答这些问题,那将非常有帮助。谢谢!

最佳答案

Ciphers默认使用,Nginx根据版本配置。

In version 1.0.5 and later, the default SSL ciphers areHIGH:!aNULL:!MD5. In versions 0.7.65 and 0.8.20 and later, the defaultSSL ciphers are HIGH:!ADH:!MD5. From version 0.8.19 the default SSLciphers are ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM. From version 0.7.64,0.8.18 and earlier the default SSL ciphers are ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP.See Nginx Docs for more information.

但您也可以明确选择您要允许使用的密码:ssl_ciphers “密码 1 密码 2 ... 密码 N”;例如 - ssl_ciphers“ECDHE-RSA-AES128-GCM-SHA256”;只支持这个特定的密码套件。关于:

Also I read that having SSLv3 enabled in ssl_protocols is a bad idea.Can I just remove that from the ssl_protocols and save the configwithout it causing major issues?

它可能导致的唯一主要问题是使用 SSLv3 的客户端尝试连接您的服务器将被拒绝,因为它不被您的服务器接受(配置文件不支持)。无论如何,在某些版本中它是 Nginx 的默认设置,不应该成为问题。

来自 Nginx 文档:

From versions 0.7.65 and 0.8.19 and later, the default SSL protocolsare SSLv3, TLSv1, TLSv1.1, and TLSv1.2 (if supported by the OpenSSLlibrary).

关于nginx - 如何为 NGINX 配置选择正确的密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62325934/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com