Skip to content

Commit

Permalink
add nginx path for sdk handlers (infiniflow#2899) (infiniflow#2900)
Browse files Browse the repository at this point in the history
### 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)
  • Loading branch information
kaleocheng authored Oct 21, 2024
1 parent c30d0c1 commit b891345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/nginx/ragflow.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit b891345

Please sign in to comment.