Browse Source

add nginx path for sdk handlers (#2899) (#2900)

### What problem does this PR solve?

add the nginx path `/api` for sdk handlers 

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.13.0
Kaleo 1 year ago
parent
commit
1d6bcf5aa2
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      docker/nginx/ragflow.conf

+ 1
- 1
docker/nginx/ragflow.conf View File

gzip_vary on; gzip_vary on;
gzip_disable "MSIE [1-6]\."; gzip_disable "MSIE [1-6]\.";


location /v1 {
location ~ ^/(v1|api) {
proxy_pass http://ragflow:9380; proxy_pass http://ragflow:9380;
include proxy.conf; include proxy.conf;
} }

Loading…
Cancel
Save