From 3b17cfe0e6cab9606bf2fdb0461762e929b51da3 Mon Sep 17 00:00:00 2001 From: Leonardo Christino <leomilho@gmail.com> Date: Wed, 18 Oct 2023 11:37:31 +0200 Subject: [PATCH] chore: fix nginx config with proper outpost url --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index c9114ea10..217894d3a 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -30,7 +30,7 @@ server { # all requests to /outpost.goauthentik.io must be accessible without authentication location /outpost.goauthentik.io { - proxy_pass https://auth.staging.graphpolaris.com/outpost.goauthentik.io; + proxy_pass https://auth.staging.graphpolaris.com/; # ensure the host of this vserver matches your external URL you've configured # in authentik proxy_set_header Host $host; -- GitLab