Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试联系Caddy提供的 https 站点。尝试使用 CURL 获取内容时出现错误,即使使用
CURLOPT_SSL_VERIFYPEER => false
无论如何,将其设置为 false 有一定的担忧。
事实证明,默认情况下,Caddy 将与 tls 1.1 的最低版本进行通信,而我的主机使用的是 1.0。如果您将此添加到您的 caddyfile 中,如果这是您的问题,它应该可以工作。
example.ie { tls { protocols tls1.0 tls1.2 #min max } log access.log errors err.log proxy / http://myexample.com:3032 }