From 968cdc32042de50e2780ae4be373ab2c721568c5 Mon Sep 17 00:00:00 2001 From: Mohammed Al Sahaf Date: Tue, 22 Apr 2025 02:30:04 +0300 Subject: [PATCH] reverse_proxy: remove reference to deprecated `tls_trusted_ca_certs` (#466) closes #465 Signed-off-by: Mohammed Al Sahaf --- src/docs/markdown/caddyfile/directives/reverse_proxy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/markdown/caddyfile/directives/reverse_proxy.md b/src/docs/markdown/caddyfile/directives/reverse_proxy.md index 587735d..c4164fd 100644 --- a/src/docs/markdown/caddyfile/directives/reverse_proxy.md +++ b/src/docs/markdown/caddyfile/directives/reverse_proxy.md @@ -771,13 +771,13 @@ example.com { ``` -Instead you may establish trust with the upstream by explicitly [trusting the upstream's certificate](#tls_trusted_ca_certs), and (optionally) setting TLS-SNI to match the hostname in the upstream's certificate: +Instead you may establish trust with the upstream by explicitly [trusting the upstream's certificate](#tls_trust_pool), and (optionally) setting TLS-SNI to match the hostname in the upstream's certificate: ```caddy example.com { reverse_proxy 10.0.0.1:443 { transport http { - tls_trusted_ca_certs /path/to/cert.pem + tls_trust_pool file /path/to/cert.pem tls_server_name app.example.com } }