diff --git a/website/docs/providers/proxy/_nginx_proxy_manager.md b/website/docs/providers/proxy/_nginx_proxy_manager.md index 58a12c2ac3..376cb90373 100644 --- a/website/docs/providers/proxy/_nginx_proxy_manager.md +++ b/website/docs/providers/proxy/_nginx_proxy_manager.md @@ -48,7 +48,7 @@ location / { # all requests to /outpost.goauthentik.io must be accessible without authentication location /outpost.goauthentik.io { - proxy_pass http://outpost.company:9000/outpost.goauthentik.io; + proxy_pass http://outpost.company:9000; # ensure the host of this vserver matches your external URL you've configured # in authentik proxy_set_header Host $host; diff --git a/website/docs/providers/proxy/_nginx_standalone.md b/website/docs/providers/proxy/_nginx_standalone.md index 780274b6fd..ec3c017483 100644 --- a/website/docs/providers/proxy/_nginx_standalone.md +++ b/website/docs/providers/proxy/_nginx_standalone.md @@ -52,7 +52,7 @@ server { # all requests to /outpost.goauthentik.io must be accessible without authentication location /outpost.goauthentik.io { - proxy_pass http://outpost.company:9000/outpost.goauthentik.io; + proxy_pass http://outpost.company:9000; # ensure the host of this vserver matches your external URL you've configured # in authentik proxy_set_header Host $host;