diff options
author | chenjiankun <chenjiankun1@huawei.com> | 2017-09-11 06:24:45 +0000 |
---|---|---|
committer | chenjiankun <chenjiankun1@huawei.com> | 2017-09-11 06:24:45 +0000 |
commit | f53cb19a64711f600a562242222b6e52a974d956 (patch) | |
tree | f4aa43feb5c08ce17d2e72665b62008bb661e661 /utils/test/reporting/docker | |
parent | 641e4920bec46a77d8e3d3bfcd1dd4f9f9ac512f (diff) |
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 <chenjiankun1@huawei.com>
Diffstat (limited to 'utils/test/reporting/docker')
-rw-r--r-- | utils/test/reporting/docker/nginx.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/test/reporting/docker/nginx.conf b/utils/test/reporting/docker/nginx.conf index ced8179c1..95baf0e48 100644 --- a/utils/test/reporting/docker/nginx.conf +++ b/utils/test/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/ { |