mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
41d0a8b295
Co-authored-by: Garfield Dai <dai.hai@foxmail.com>
29 lines
485 B
Plaintext
29 lines
485 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location /console/api {
|
|
proxy_pass http://api:5001;
|
|
include proxy.conf;
|
|
}
|
|
|
|
location /api {
|
|
proxy_pass http://api:5001;
|
|
include proxy.conf;
|
|
}
|
|
|
|
location /v1 {
|
|
proxy_pass http://api:5001;
|
|
include proxy.conf;
|
|
}
|
|
|
|
location /files {
|
|
proxy_pass http://api:5001;
|
|
include proxy.conf;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://web:3000;
|
|
include proxy.conf;
|
|
}
|
|
} |