diff --git a/nginx/http.conf b/nginx/http.conf index 491e67a..b142c47 100644 --- a/nginx/http.conf +++ b/nginx/http.conf @@ -76,7 +76,7 @@ http { } location /gdhcn/ { - proxy_pass http://gdhcn-validator-service:8080; + proxy_pass http://gdhcn-validator-service:8080/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; diff --git a/nginx/https.conf b/nginx/https.conf index e27b20f..d1d137e 100644 --- a/nginx/https.conf +++ b/nginx/https.conf @@ -92,7 +92,7 @@ http { } location /gdhcn/ { - proxy_pass http://gdhcn-validator-service:8080; + proxy_pass http://gdhcn-validator-service:8080/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;