Update nginx.conf

This commit is contained in:
nora 2022-10-28 10:36:42 +02:00 committed by GitHub
parent d6fec4ee43
commit 21048c5516
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ http {
location /bisect-rustc { location /bisect-rustc {
resolver 127.0.0.11 valid=30s; resolver 127.0.0.11 valid=30s;
set $upstream_service cargo-bisect-rustc-service; set $upstream_service cargo-bisect-rustc-service;
proxy_pass http://$upstream_service:4000; proxy_pass http://$upstream_service:4000/;
} }
location / { location / {
@ -117,4 +117,4 @@ http {
} }
server_tokens off; server_tokens off;
} }