From e4d072363069803ffc3dad67fed22b3c9e924d36 Mon Sep 17 00:00:00 2001 From: "David L. Carrascal" Date: Fri, 21 Nov 2025 14:55:12 +0100 Subject: [PATCH] Fix: Update upstream host in HTTPS nginx config to localhost --- docker/nginx/ragflow.https.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/nginx/ragflow.https.conf b/docker/nginx/ragflow.https.conf index 71cd241e7..2ef4cd005 100644 --- a/docker/nginx/ragflow.https.conf +++ b/docker/nginx/ragflow.https.conf @@ -23,12 +23,12 @@ server { gzip_disable "MSIE [1-6]\."; location ~ ^/api/v1/admin { - proxy_pass http://ragflow:9381; + proxy_pass http://localhost:9381; include proxy.conf; } location ~ ^/(v1|api) { - proxy_pass http://ragflow:9380; + proxy_pass http://localhost:9380; include proxy.conf; }