diff --git a/website/docs/providers/proxy/_caddy_standalone.md b/website/docs/providers/proxy/_caddy_standalone.md index bb9cb7e3a..4676fa656 100644 --- a/website/docs/providers/proxy/_caddy_standalone.md +++ b/website/docs/providers/proxy/_caddy_standalone.md @@ -20,3 +20,11 @@ app.company { reverse_proxy localhost:1234 } ``` + +If you're trying to proxy to an upstream over HTTPS, you need to set the `Host` header to the value they expect for it to work correctly. + +``` +reverse_proxy /outpost.goauthentik.io/* https://outpost.company { + header_up Host {http.reverse_proxy.upstream.hostport} +} +```