From d223f5dc8c6074206456b2b609519fa8188a6f7c 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 --- utils/test/reporting/docker/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/test/reporting/docker/nginx.conf b/utils/test/reporting/docker/nginx.conf index 95baf0e48..66bd7e497 100644 --- a/utils/test/reporting/docker/nginx.conf +++ b/utils/test/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