Fix: Update upstream host in HTTPS nginx config to localhost

This commit is contained in:
David L. Carrascal 2025-11-21 14:55:12 +01:00
parent f0a14f5fce
commit e4d0723630

View file

@ -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;
}