From dea97914bf840a062b1d628fdebd48f1f2f71673 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Sun, 23 Mar 2025 09:46:41 +0000 Subject: [PATCH] fix (proxy): use correct nextcloud local address --- proxy/nginx/conf.d/nextcloud.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/nginx/conf.d/nextcloud.conf b/proxy/nginx/conf.d/nextcloud.conf index 6484344..eb93b89 100644 --- a/proxy/nginx/conf.d/nextcloud.conf +++ b/proxy/nginx/conf.d/nextcloud.conf @@ -28,7 +28,7 @@ server { # Proxy Configuration location / { - proxy_pass http://nextcloud_app_1:80; + proxy_pass http://nextcloud-app-1:80; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;