Integrate webex webhooks
This commit is contained in:
16
api/nginx/nginx.conf
Normal file
16
api/nginx/nginx.conf
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user