From e798e098e62b0d2fe016ed6fc3d0f1238e663b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20Aamb=C3=B8=20Fosstveit?= Date: Mon, 18 Mar 2024 19:49:04 +0100 Subject: [PATCH] Update redirect to fix SPA --- proxy/nginx.conf.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy/nginx.conf.template b/proxy/nginx.conf.template index 794f9a06..ec87fa65 100644 --- a/proxy/nginx.conf.template +++ b/proxy/nginx.conf.template @@ -20,7 +20,7 @@ http { } location / { - return 301 https://$host$request_uri/; + return 301 https://$host$request_uri; } } @@ -38,7 +38,7 @@ http { real_ip_header proxy_protocol; location / { - proxy_pass http://edumeet-client:80/; + proxy_pass http://edumeet-client:80; } location /socket.io/ {