发布 Dify 1.0.0 暂不可用

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
2025-02-18 12:09:38 +08:00
parent 98fd807174
commit 087680f88f
34 changed files with 0 additions and 0 deletions
@@ -0,0 +1,37 @@
# Please do not directly edit this file. Instead, modify the .env variables related to NGINX configuration.
server {
listen ${NGINX_PORT};
server_name ${NGINX_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;
}
# placeholder for acme challenge location
${ACME_CHALLENGE_LOCATION}
# placeholder for https config defined in https.conf.template
${HTTPS_CONFIG}
}