From 8790640fb0687087c9b5035149cb4c72a2d72586 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 20 Jun 2018 15:19:57 -0400 Subject: [PATCH] add nginx configuration --- greenlight.nginx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 greenlight.nginx diff --git a/greenlight.nginx b/greenlight.nginx new file mode 100644 index 00000000..a40d30ba --- /dev/null +++ b/greenlight.nginx @@ -0,0 +1,26 @@ +# Routes requests to Greenlight based on the '/gl' prefix. +# Use this file to route '/gl' paths on your BigBlueButton server +# to the Greenlight application. If you are using a different +# subpath, you should change it here. + +location /gl { + proxy_pass http://127.0.0.1:6000; + 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; +} + +location /gl/cable { + proxy_pass http://127.0.0.1:6000; + 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; +}