some more nginx fixes

This commit is contained in:
Ulf Gebhardt 2022-01-10 08:34:21 +01:00
parent 6adb2298c0
commit 14726ed387
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
3 changed files with 3 additions and 2 deletions

View File

@ -79,7 +79,7 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080;
proxy_pass http://127.0.0.1:8080/;
proxy_redirect off;
}

View File

@ -65,7 +65,7 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080;
proxy_pass http://127.0.0.1:8080/;
proxy_redirect off;
}

View File

@ -64,6 +64,7 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
# TODO: in docker environemnt we do not have the trailing slash. This needs work
proxy_pass http://admin:8080;
proxy_redirect off;
}