Update mdwalters.conf

This commit is contained in:
Max 2024-04-29 08:14:30 +00:00
parent bc00c4509b
commit 3c8a158bad

View file

@ -39,16 +39,20 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
location /.well-known {
proxy_pass http://localhost:1350/.well-known;
location /api/v1/streaming {
proxy_pass http://localhost:1350/api/v1/streaming;
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";
}
location /snac/ {
proxy_pass http://localhost:1350;
location /.well-known {
proxy_pass http://localhost:1350/.well-known;
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,16 +66,12 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /api/v1/streaming {
proxy_pass http://localhost:1350/api/v1/streaming;
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;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}