updated nginx configurations for hook/ subpath

This commit is contained in:
Ulf Gebhardt 2022-01-12 08:17:50 +01:00
parent e378136106
commit 2d81d9d7d7
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -52,7 +52,7 @@ server {
proxy_set_header Host $host;
# no trailing slash to keep the hook/ prefix
proxy_pass http://127.0.0.1:4000;
proxy_pass http://127.0.0.1:4000/hook;
proxy_redirect off;
}

View File

@ -51,7 +51,7 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_pass http://backend:4000;
proxy_pass http://backend:4000/hook;
proxy_redirect off;
}