From bf0102ece6d1e3b1e05f5472326ded6484199fa4 Mon Sep 17 00:00:00 2001 From: hwiorn Date: Sun, 23 May 2021 22:35:45 +0900 Subject: [PATCH] Fix default value of fe_https for non-reverse-proxy compatibility --- root/etc/nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/nginx/nginx.conf b/root/etc/nginx/nginx.conf index d22b0a7..4c896d0 100644 --- a/root/etc/nginx/nginx.conf +++ b/root/etc/nginx/nginx.conf @@ -26,7 +26,7 @@ http { client_max_body_size 100M; map $http_x_forwarded_proto $fe_https { - default off; + default $https; https on; }