Update mdwalters.conf

This commit is contained in:
Max 2024-04-29 08:00:05 +00:00
parent 5672940953
commit 665910d7b3

View file

@ -47,8 +47,8 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
location /snac {
proxy_pass http://localhost:1350/;
location /snac/ {
proxy_pass http://localhost:1350;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@ -62,4 +62,16 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
proxy_pass http://localhost:1350;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}