From 4e4abe7715713588b0c202f10affd0c235afba53 Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Thu, 21 Sep 2017 01:28:24 +0200 Subject: [PATCH] Fix issues with ipv6 localhost --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index f838af9..1a59193 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -2,7 +2,7 @@ location / { if ($scheme = http) { rewrite ^ https://$server_name$request_uri? permanent; } - proxy_pass http://localhost:__PORT__/; + proxy_pass http://127.0.0.1:__PORT__/; proxy_set_header Host $host; proxy_buffering off;