10 lines
406 B
Plaintext
10 lines
406 B
Plaintext
|
# Pass to the webhooks app all requests made to the webhooks API.
|
||
|
location /bigbluebutton/api/hooks {
|
||
|
proxy_pass http://127.0.0.1:3005;
|
||
|
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;
|
||
|
}
|