Add watchtower http update endpoint

This commit is contained in:
2024-10-25 15:12:53 +01:00
parent 26c7c95e24
commit b043a915c0
3 changed files with 40 additions and 13 deletions

View File

@@ -36,4 +36,21 @@ server {
location / {
proxy_pass http://rpi4-2:5000;
}
}
}
# Watchtower
server {
listen 80;
listen [::]:80;
listen 443 ssl;
listen [::]:443 ssl;
ssl_certificate /etc/letsencrypt/live/apptabulous.co.uk/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/apptabulous.co.uk/privkey.pem;
server_name watchtower.apptabulous.co.uk;
location / {
proxy_pass http://rpi4-2:8080;
}
}