mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-08 00:18:12 +08:00
## Problem In the default deployment (`API_PROXY_SCHEME=python`), the nginx config generated from `docker/nginx/ragflow.conf.python` uses: ```nginx proxy_pass http://localhost:9381; # admin proxy_pass http://localhost:9380; # api ``` Inside the RAGFlow container, `/etc/hosts` maps `localhost` to both `127.0.0.1` and `::1`: ``` 127.0.0.1 localhost ::1 localhost ip6-localhost ip6-loopback ``` But the backend services (`ragflow_server.py` on 9380, admin server on 9381) only listen on IPv4 (`127.0.0.1`). When nginx resolves `localhost` to `::1`, the upstream connection fails and nginx falls back to the IPv4 address - each fallback adds ~1 second of latency. Co-authored-by: Jin Hai <haijin.chn@gmail.com>
35 lines
794 B
Plaintext
35 lines
794 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /ragflow/web/dist;
|
|
|
|
gzip on;
|
|
gzip_min_length 1k;
|
|
gzip_comp_level 9;
|
|
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
|
|
gzip_vary on;
|
|
gzip_disable "MSIE [1-6]\.";
|
|
|
|
location ~ ^/api/v1/admin {
|
|
proxy_pass http://127.0.0.1:9381;
|
|
include proxy.conf;
|
|
}
|
|
|
|
location ~ ^/(v1|api) {
|
|
proxy_pass http://127.0.0.1:9380;
|
|
include proxy.conf;
|
|
}
|
|
|
|
|
|
location / {
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# Cache-Control: max-age Expires
|
|
location ~ ^/static/(css|js|media)/ {
|
|
expires 10y;
|
|
access_log off;
|
|
}
|
|
}
|