From d6a91e242d2cd5ba1c1cb4e15d843310fc5347b7 Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Mon, 11 Sep 2017 06:24:45 +0000 Subject: [PATCH] Change nginx configuration Since landing page have changed from reporting2 to testing, the nginx configuration need some adoption. If the pre url change again, we need to config the base_url when start our docker container. For example: docker run -itd -p 8084:8000 -e SERVER_URL testresults.opnfv.org/xxx/api opnfv/reporting:latest Change-Id: If3c9f9af76fcfc8047b5b9559fcc8bd45740d4d2 Signed-off-by: chenjiankun --- reporting/docker/nginx.conf | 6 +++--- reporting/pages/config.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reporting/docker/nginx.conf b/reporting/docker/nginx.conf index ced8179..95baf0e 100644 --- a/reporting/docker/nginx.conf +++ b/reporting/docker/nginx.conf @@ -11,11 +11,11 @@ server { server_name localhost; location / { - proxy_pass http://backends; + alias /home/opnfv/releng/utils/test/reporting/pages/dist/; } - location /reporting/ { - alias /home/opnfv/releng/utils/test/reporting/pages/dist/; + location /api/ { + http_pass http://backends/; } location /display/ { diff --git a/reporting/pages/config.sh b/reporting/pages/config.sh index f9bb89a..62aa16f 100755 --- a/reporting/pages/config.sh +++ b/reporting/pages/config.sh @@ -1,3 +1,3 @@ -: ${SERVER_URL:='testresults.opnfv.org/reporting2'} +: ${SERVER_URL:='testresults.opnfv.org/testing/api'} echo "{\"url\": \"http://${SERVER_URL}\"}" > dist/config.json -- 2.16.6