From e7d21bfe90f8eae8b84fc08f3d8b14fc6c0fd980 Mon Sep 17 00:00:00 2001 From: mr-forust Date: Mon, 17 Nov 2025 21:50:14 +0100 Subject: [PATCH 1/4] fix: update Uptime Kuma host rule in dynamic configuration --- traefik/dynamic/dynamic.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/traefik/dynamic/dynamic.yml b/traefik/dynamic/dynamic.yml index a85af7e..89d021f 100644 --- a/traefik/dynamic/dynamic.yml +++ b/traefik/dynamic/dynamic.yml @@ -44,12 +44,12 @@ http: # Uptime Kuma uptime-kuma: - rule: "Host(`uptime.forust.xyz`)" + rule: "Host(`uptime-kuma.forust.xyz`)" entryPoints: - websecure service: uptime-kuma - middlewares: - - security-headers + # middlewares: + # - security-headers tls: {} # AdGuard Home (public (account required)) From b20c01226840ccd6d8028188ea4b83bcc10a1dd8 Mon Sep 17 00:00:00 2001 From: mr-forust Date: Mon, 17 Nov 2025 21:54:24 +0100 Subject: [PATCH 2/4] chore: Add uptime-kuma files to .gitignore, fixed gitea-db gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 47d29d2..d532ac9 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,7 @@ sync.ffs_lock .env.forust # Volumes and data directories -gitea/gitea-db/* +gitea/gitea-db/ gitea/gitea-data/* n8n/n8n-data/* n8n/n8n-node-data/* @@ -16,6 +16,7 @@ adguardhome/data/* dockmon/data/* portainer/portainer_data/* metube/MeTube_downloads +uptime-kuma/data/ # Traefik files traefik/letsencrypt/acme.json From 1f9a1c2c621cac02ef2c924a1dc30eb41b98f8a0 Mon Sep 17 00:00:00 2001 From: mr-forust Date: Mon, 17 Nov 2025 22:16:27 +0100 Subject: [PATCH 3/4] fix: Uptime kuma on local traefik --- traefik/dynamic/dynamic.yml | 26 +++++++++++++------------- uptime-kuma/compose.yaml | 10 +++++++--- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/traefik/dynamic/dynamic.yml b/traefik/dynamic/dynamic.yml index 89d021f..4830bb3 100644 --- a/traefik/dynamic/dynamic.yml +++ b/traefik/dynamic/dynamic.yml @@ -42,15 +42,15 @@ http: - security-headers tls: {} - # Uptime Kuma - uptime-kuma: - rule: "Host(`uptime-kuma.forust.xyz`)" - entryPoints: - - websecure - service: uptime-kuma - # middlewares: - # - security-headers - tls: {} + # # Uptime Kuma + # uptime-kuma: + # rule: "Host(`uptime-kuma.forust.xyz`)" + # entryPoints: + # - websecure + # service: uptime-kuma + # # middlewares: + # # - security-headers + # tls: {} # AdGuard Home (public (account required)) adguard: @@ -153,10 +153,10 @@ http: servers: - url: "http://nextcloud-aio-apache:11000" - # Uptime Kuma - uptime-kuma: - loadBalancer: - servers: "http://uptime-kuma:3001" + # # Uptime Kuma + # uptime-kuma: + # loadBalancer: + # servers: "http://uptime-kuma:3001" # Dockmon dockmon: diff --git a/uptime-kuma/compose.yaml b/uptime-kuma/compose.yaml index 98662f4..df6b935 100644 --- a/uptime-kuma/compose.yaml +++ b/uptime-kuma/compose.yaml @@ -2,15 +2,19 @@ services: uptime-kuma: image: louislam/uptime-kuma:2 restart: unless-stopped - volumes: container_name: uptime-kuma + volumes: - ./data:/app/data ports: # : - "3001:3001" labels: - - "traefik.enable=true" - - "traefik.docker.network=traefik-proxy" + - "traefik.enable=true" + - "traefik.http.routers.uptime-kuma.rule=Host(`uptime-kuma.gigaforust`)" + - "traefik.http.routers.uptime-kuma.entrypoints=websecure" + - "traefik.http.routers.uptime-kuma.tls=true" + # - "traefik.http.routers.uptime-kuma.tls.certresolver=myresolver" + - "traefik.http.services.uptime-kuma.loadBalancer.server.port=3001" networks: - traefik-proxy networks: From 6f8b7809064b0eaab3cd1a7af1e3a7635ef3029d Mon Sep 17 00:00:00 2001 From: mr-forust Date: Mon, 17 Nov 2025 22:17:24 +0100 Subject: [PATCH 4/4] chore: updated hostame from test --- uptime-kuma/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uptime-kuma/compose.yaml b/uptime-kuma/compose.yaml index df6b935..39f4db6 100644 --- a/uptime-kuma/compose.yaml +++ b/uptime-kuma/compose.yaml @@ -10,7 +10,7 @@ services: - "3001:3001" labels: - "traefik.enable=true" - - "traefik.http.routers.uptime-kuma.rule=Host(`uptime-kuma.gigaforust`)" + - "traefik.http.routers.uptime-kuma.rule=Host(`uptime-kuma.forust.xyz`)" - "traefik.http.routers.uptime-kuma.entrypoints=websecure" - "traefik.http.routers.uptime-kuma.tls=true" # - "traefik.http.routers.uptime-kuma.tls.certresolver=myresolver"