etc/nginx: remove / from the proxies

while I still remember
This commit is contained in:
Aminda Suomalainen 2019-09-18 17:40:00 +03:00
parent ee03a773c0
commit bda94cac72
No known key found for this signature in database
GPG Key ID: 0C207F07B2F32B67
3 changed files with 3 additions and 3 deletions

View File

@ -12,6 +12,6 @@ server {
access_log /var/log/nginx/bitbot.access.log main;
location / {
proxy_pass http://[::1]:9050/;
proxy_pass http://[::1]:9050;
}
}

View File

@ -13,7 +13,7 @@ server {
#access_log /var/log/nginx/host.access.log main;
#location /api/ {
# proxy_pass http://[::1]:9050/;
# proxy_pass http://[::1]:9050;
# }

View File

@ -17,7 +17,7 @@ server {
# Behind CloudFlare see ../conf.d/cloudflare.conf
location / {
proxy_pass http://localhost:8080/;
proxy_pass http://localhost:8080;
}
}