From ae5b14c0dc6e8e00b3a7ebd54e635140d0c83888 Mon Sep 17 00:00:00 2001 From: Frank Sauerburger <frank@sauerburger.com> Date: Tue, 1 Dec 2020 22:35:09 +0100 Subject: [PATCH] Fix header name --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index d461643..5525ba2 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -44,7 +44,7 @@ http { location / { include uwsgi_params; uwsgi_pass hub:8080; - uwsgi_param HTTP_X_FORWARDED_PROTO https; + uwsgi_param X-Forwarded-Proto https; uwsgi_cache my_cache; } } -- GitLab