From 110e4f4fccb1e910c05017fdb3d5933f4acfee80 Mon Sep 17 00:00:00 2001 From: David Rotermund Date: Sat, 13 Jul 2024 19:37:17 +0200 Subject: [PATCH] Update nginx.conf --- authentiknginx/nginx.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/authentiknginx/nginx.conf b/authentiknginx/nginx.conf index c0692d7..f3a0a21 100644 --- a/authentiknginx/nginx.conf +++ b/authentiknginx/nginx.conf @@ -15,18 +15,18 @@ add_header Strict-Transport-Security "max-age=31536000; includeSubdomains;"; server_tokens off; client_max_body_size 50M; + server_name overleaf.neuro.uni-bremen.de; location / { - proxy_pass http://authentikserver:9000; + proxy_pass https://authentikserver:9443; proxy_set_header X-Forwarded-Proto $scheme; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; - proxy_set_header Host $host; + proxy_set_header Host $http_host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_read_timeout 3m; proxy_send_timeout 3m; } } } -