Add missing backslash

This commit is contained in:
Fredrik Baberg 2022-07-11 17:47:02 +02:00
parent eb97ecd770
commit 3441ebebb0
2 changed files with 2 additions and 2 deletions

View File

@ -5,6 +5,6 @@ server {
include /etc/nginx/includes/proxy_params.conf;
location / {
proxy_pass http://backend;
proxy_pass http://backend/;
}
}

View File

@ -8,7 +8,7 @@ server {
allow 172.30.32.2;
deny all;
proxy_pass http://backend;
proxy_pass http://backend/;
proxy_set_header Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";