dify更新
This commit is contained in:
BIN
docker/dify.zip
BIN
docker/dify.zip
Binary file not shown.
@@ -1502,7 +1502,7 @@ networks:
|
|||||||
# create a network between sandbox, api and ssrf_proxy, and can not access outside.
|
# create a network between sandbox, api and ssrf_proxy, and can not access outside.
|
||||||
ssrf_proxy_network:
|
ssrf_proxy_network:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
internal: true # 修改为false以允许访问外部网络(如192.168.0.64)
|
internal: true
|
||||||
milvus:
|
milvus:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
opensearch-net:
|
opensearch-net:
|
||||||
|
|||||||
@@ -1,58 +0,0 @@
|
|||||||
# Please do not directly edit this file. Instead, modify the .env variables related to NGINX configuration.
|
|
||||||
|
|
||||||
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 /explore {
|
|
||||||
proxy_pass http://web:3000;
|
|
||||||
include proxy.conf;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /e/ {
|
|
||||||
proxy_pass http://plugin_daemon:5002;
|
|
||||||
proxy_set_header Dify-Hook-Url $scheme://$host$request_uri;
|
|
||||||
include proxy.conf;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://web:3000;
|
|
||||||
include proxy.conf;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /mcp {
|
|
||||||
proxy_pass http://api:5001;
|
|
||||||
include proxy.conf;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /triggers {
|
|
||||||
proxy_pass http://api:5001;
|
|
||||||
include proxy.conf;
|
|
||||||
}
|
|
||||||
|
|
||||||
# placeholder for acme challenge location
|
|
||||||
|
|
||||||
|
|
||||||
# placeholder for https config defined in https.conf.template
|
|
||||||
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user