fix: disable absolute redirects in Nginx to fix port redirects
All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 26s

This commit is contained in:
DanielS
2026-07-07 00:55:00 +02:00
parent ee239978f3
commit ec42fbe520

View File

@@ -2,7 +2,8 @@ server {
listen 8080;
server_name localhost;
# Verhindert, dass Nginx bei 301-Redirects (z.B. ohne Slash) den internen Port 8080 anhängt
# Erzwingt relative Redirects (z.B. Location: /templates/ statt http://...:8080/templates/)
absolute_redirect off;
port_in_redirect off;
location / {