From 5f38ba2101a78a051152b49fe377fa72a9d2f1b0 Mon Sep 17 00:00:00 2001 From: Nik Afiq Date: Sat, 24 Jan 2026 20:27:40 +0900 Subject: [PATCH] Update Nginx configuration to change dashy upstream server address and remove unused upstream definition --- nik4nao.home.arpa.conf | 2 +- upstreams.conf | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/nik4nao.home.arpa.conf b/nik4nao.home.arpa.conf index 79f3805..bbdf9e5 100644 --- a/nik4nao.home.arpa.conf +++ b/nik4nao.home.arpa.conf @@ -143,7 +143,7 @@ server { return 302 /dashy/; } location /dashy/ { - proxy_pass http://dashy_upstream/; + proxy_pass http://127.0.0.1:8084/; include snippets/proxy-common.conf; proxy_set_header X-Forwarded-Host $host; diff --git a/upstreams.conf b/upstreams.conf index 3b1578b..7ad3f86 100644 --- a/upstreams.conf +++ b/upstreams.conf @@ -29,8 +29,3 @@ upstream djellyfin_upstream { server 127.0.0.1:8096; keepalive 32; } - -upstream dashy_upstream { - server 127.0.0.1:8084; - keepalive 16; -}