Update Nginx configuration to change dashy upstream server address and remove unused upstream definition

This commit is contained in:
Nik Afiq 2026-01-24 20:27:40 +09:00
parent edf465f0e6
commit 5f38ba2101
2 changed files with 1 additions and 6 deletions

View File

@ -143,7 +143,7 @@ server {
return 302 /dashy/; return 302 /dashy/;
} }
location /dashy/ { location /dashy/ {
proxy_pass http://dashy_upstream/; proxy_pass http://127.0.0.1:8084/;
include snippets/proxy-common.conf; include snippets/proxy-common.conf;
proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Host $host;

View File

@ -29,8 +29,3 @@ upstream djellyfin_upstream {
server 127.0.0.1:8096; server 127.0.0.1:8096;
keepalive 32; keepalive 32;
} }
upstream dashy_upstream {
server 127.0.0.1:8084;
keepalive 16;
}