Integrate webex webhooks

This commit is contained in:
2026-01-02 15:24:02 +01:00
parent a4c72098b3
commit 071fe5badd
16 changed files with 502 additions and 93 deletions

16
api/nginx/nginx.conf Normal file
View File

@@ -0,0 +1,16 @@
events {}
http {
server {
listen 8600;
location / {
proxy_pass https://boardmate-api:8080;
proxy_ssl_verify off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}