From d6fec4ee432dabaec02c8d8b684b9b8f6306e9f7 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Mon, 24 Oct 2022 20:19:01 +0200 Subject: [PATCH] nginx --- nginx/nginx.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 9012f5d..e167ebb 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -14,7 +14,7 @@ http { location /bisect-rustc { resolver 127.0.0.11 valid=30s; set $upstream_service cargo-bisect-rustc-service; - proxy_pass http://$upstream_service:4000/; + proxy_pass http://$upstream_service:4000; } location / { @@ -32,7 +32,7 @@ http { location / { resolver 127.0.0.11 valid=30s; set $upstream_registry registry; - proxy_pass https://$upstream_registry:5000/; + proxy_pass https://$upstream_registry:5000; } } @@ -44,7 +44,7 @@ http { location / { resolver 127.0.0.11 valid=30s; set $upstream_frontend cors-school-frontend; - proxy_pass http://$upstream_frontend:80/; + proxy_pass http://$upstream_frontend:80; } } @@ -67,7 +67,7 @@ http { resolver 127.0.0.11 valid=30s; set $upstream_backend cors-school-backend; - proxy_pass http://$upstream_backend:8080/; + proxy_pass http://$upstream_backend:8080; } } @@ -111,7 +111,7 @@ http { resolver 127.0.0.11 valid=30s; set $upstream_backend hugo-chat-backend; - proxy_pass http://$upstream_backend:8080/; + proxy_pass http://$upstream_backend:8080; } }