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)
This commit is contained in:
Kaleo 2024-10-21 09:47:45 +08:00 committed by GitHub
parent 1e6d44d6ef
commit 1d6bcf5aa2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@ server {
gzip_vary on;
gzip_disable "MSIE [1-6]\.";
location /v1 {
location ~ ^/(v1|api) {
proxy_pass http://ragflow:9380;
include proxy.conf;
}