From d5e42cd825c40bcdcece58e9cd21b7f2d7ce3a7f Mon Sep 17 00:00:00 2001 From: yalh76 Date: Fri, 8 Feb 2019 18:07:52 +0100 Subject: [PATCH] fix proxy_pass --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 19cfa5b..b14062f 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -16,7 +16,7 @@ location ~ ^/(css|img|js|fonts)/ { location __PATH__/ { - proxy_pass http://localhost:__PORT__/; + proxy_pass http://localhost:__PORT__; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;