From 068c29760cabd51533b8382eb5955d75174c7672 Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Wed, 20 Sep 2017 08:41:08 +0000 Subject: Bugfix: Change http_pass to proxy_pass http_pass is wrong for nginx, we need to change it to proxy_pass Change-Id: Ib679b36a4a139c02647564719e1cfc49a9f376a2 Signed-off-by: chenjiankun --- reporting/docker/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'reporting') diff --git a/reporting/docker/nginx.conf b/reporting/docker/nginx.conf index 95baf0e..66bd7e4 100644 --- a/reporting/docker/nginx.conf +++ b/reporting/docker/nginx.conf @@ -15,7 +15,7 @@ server { } location /api/ { - http_pass http://backends/; + proxy_pass http://backends/; } location /display/ { -- cgit 1.2.3-korg