From 7e3d02525f1f0c5324ef566ab5ea0efba693c78f Mon Sep 17 00:00:00 2001 From: jfederico <jesus@123it.ca> Date: Tue, 13 Sep 2016 13:53:41 -0400 Subject: [PATCH] bbb-lti: Fixed bug in nginx configuration that prevented https of working fine --- bbb-lti/lti.nginx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbb-lti/lti.nginx b/bbb-lti/lti.nginx index 747d2a46be..afe416e71e 100644 --- a/bbb-lti/lti.nginx +++ b/bbb-lti/lti.nginx @@ -4,7 +4,7 @@ proxy_pass http://127.0.0.1:8080; proxy_redirect default; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto; + proxy_set_header X-Forwarded-Proto $scheme; # Allow 30M uploaded presentation document. client_max_body_size 30m; -- GitLab