From 6c2df14a24bb53423793ea9eaf14fcf70fcaa22d Mon Sep 17 00:00:00 2001 From: Limezy Date: Thu, 23 Sep 2021 17:35:16 +0200 Subject: [PATCH] Correct nginx error --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index a806275..a2fab1e 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -5,7 +5,7 @@ location / { rewrite ^ https://$server_name$request_uri? permanent; } - proxy_pass https://127.0.0.1:__PORT__; + proxy_pass http://127.0.0.1:__PORT__; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr;