Add base url to new containers
Some checks failed
Deploy with Docker Compose / deploy (push) Failing after 0s

This commit is contained in:
2026-04-07 12:57:16 +01:00
parent 8a6e34dd69
commit a967a249c2
7 changed files with 30 additions and 7 deletions

View File

@@ -164,7 +164,7 @@ http {
}
location /uptime-kuma/ {
proxy_pass http://$UPTIMEKUMA_HOST:$UPTIMEKUMA_PORT/;
proxy_pass http://$UPTIMEKUMA_HOST:$UPTIMEKUMA_PORT;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
@@ -191,7 +191,7 @@ http {
}
location /wallabag/ {
proxy_pass http://$WALLABAG_HOST:$WALLABAG_PORT/;
proxy_pass http://$WALLABAG_HOST:$WALLABAG_PORT;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -327,7 +327,7 @@ http {
}
location /uptime-kuma/ {
proxy_pass http://$UPTIMEKUMA_HOST:$UPTIMEKUMA_PORT/;
proxy_pass http://$UPTIMEKUMA_HOST:$UPTIMEKUMA_PORT;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
@@ -354,7 +354,7 @@ http {
}
location /wallabag/ {
proxy_pass http://$WALLABAG_HOST:$WALLABAG_PORT/;
proxy_pass http://$WALLABAG_HOST:$WALLABAG_PORT;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;