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 に設定することには、ある程度の懸念があります。
私のホストが 1.0 を使用していたのに対し、デフォルトで Caddy は tls 1.1 の最小バージョンと通信することが判明しました。これをキャディファイルに追加すると、これが問題であれば機能するはずです。
example.ie { tls { protocols tls1.0 tls1.2 #min max } log access.log errors err.log proxy / http://myexample.com:3032 }