We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b8bf25 commit 8353742Copy full SHA for 8353742
1 file changed
entrypoint.sh
@@ -281,7 +281,9 @@ if [[ "a${VERIFY_SSL}" == "atrue" ]]; then
281
# We'll accept any cert signed by a CA trusted by Mozilla (ca-certificates-bundle in alpine)
282
proxy_ssl_verify on;
283
proxy_ssl_trusted_certificate /etc/ssl/certs/ca-certificates.crt;
284
- proxy_ssl_verify_depth 2;
+ # docker.io has changed their certificate chain to include another intermediate certificate,
285
+ # original value of 2 is not enough, bump up depth to 3.
286
+ proxy_ssl_verify_depth 3;
287
EOD
288
echo "Upstream SSL certificate verification enabled."
289
else
0 commit comments