Initial commit — status checker service
All checks were successful
Docker / build-and-push (push) Successful in 35s

Polls Nginx Proxy Manager API for proxy hosts matching configurable
domain patterns (NPM_INCLUDE_PATTERNS), HTTP-checks each every 60s,
serves results as JSON (/api/status) and a terminal-aesthetic HTML
page (/). Port 3035.

NPM connection and domain filter patterns are fully configurable via
environment variables — see README and .env.example.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Fredrik Johansson
2026-07-07 21:36:43 +02:00
commit a300ea1b43
13 changed files with 1922 additions and 0 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
app:
image: ${IMAGE}
restart: unless-stopped
ports:
- "${PORT:-3035}:3035"
environment:
- NPM_BASE_URL=${NPM_BASE_URL}
- NPM_EMAIL=${NPM_EMAIL}
- NPM_SECRET=${NPM_SECRET}
- NPM_INCLUDE_PATTERNS=${NPM_INCLUDE_PATTERNS}