Monitor page: Uptime Kuma iframe + deploy log; expose /deploy/ via nginx

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-01 15:53:05 +00:00
parent 1dd265b46d
commit ea9dba0c58
3 changed files with 128 additions and 1 deletions

View file

@ -25,6 +25,13 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /deploy/ {
proxy_pass http://10.10.10.105:9000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location = /sw.js {
add_header Cache-Control "no-store, no-cache, must-revalidate";
try_files $uri =404;