This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/greenlight.nginx

27 lines
945 B
Plaintext
Raw Normal View History

2018-07-05 17:25:59 -04:00
# Routes requests to Greenlight based on the '/b' prefix.
# Use this file to route '/b' paths on your BigBlueButton server
2018-06-20 15:19:57 -04:00
# to the Greenlight application. If you are using a different
# subpath, you should change it here.
2018-07-05 17:25:59 -04:00
location /b {
proxy_pass http://127.0.0.1:5000;
2018-06-20 15:19:57 -04:00
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
}
2018-07-05 17:25:59 -04:00
location /b/cable {
proxy_pass http://127.0.0.1:5000;
2018-06-20 15:19:57 -04:00
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_http_version 1.1;
proxy_read_timeout 6h;
proxy_send_timeout 6h;
client_body_timeout 6h;
send_timeout 6h;
}