docker/mod/nginx/bbb/webhooks.nginx

10 lines
406 B
Plaintext
Raw Normal View History

2020-06-30 19:44:20 +02:00
# Pass to the webhooks app all requests made to the webhooks API.
location /bigbluebutton/api/hooks {
2021-04-17 18:26:15 +02:00
proxy_pass http://10.7.7.17:3005;
2020-06-30 19:44:20 +02:00
proxy_redirect default;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
}