add nginx /triggers endpoint

This commit is contained in:
hjlarry 2025-09-30 11:08:14 +08:00
parent fd2f0df097
commit a80f30f9ef
1 changed files with 7 additions and 0 deletions

View File

@ -39,10 +39,17 @@ server {
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
${ACME_CHALLENGE_LOCATION}