add nginx /triggers endpoint

This commit is contained in:
hjlarry
2025-09-30 11:08:14 +08:00
parent fd2f0df097
commit a80f30f9ef

View File

@ -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}