mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 02:18:08 +08:00
add nginx /triggers endpoint
This commit is contained in:
@ -39,10 +39,17 @@ server {
|
|||||||
proxy_pass http://web:3000;
|
proxy_pass http://web:3000;
|
||||||
include proxy.conf;
|
include proxy.conf;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /mcp {
|
location /mcp {
|
||||||
proxy_pass http://api:5001;
|
proxy_pass http://api:5001;
|
||||||
include proxy.conf;
|
include proxy.conf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /triggers {
|
||||||
|
proxy_pass http://api:5001;
|
||||||
|
include proxy.conf;
|
||||||
|
}
|
||||||
|
|
||||||
# placeholder for acme challenge location
|
# placeholder for acme challenge location
|
||||||
${ACME_CHALLENGE_LOCATION}
|
${ACME_CHALLENGE_LOCATION}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user