First commit

This commit is contained in:
2026-08-15 19:50:54 +09:00
commit 5ff20429d6
6 changed files with 287 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
name: error-page
services:
error-page:
image: nginx:alpine
container_name: error-page
restart: unless-stopped
# Reach 127.0.0.1-bound app ports on the NAS (DSM reverse proxy style).
network_mode: host
environment:
TZ: Asia/Seoul
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./upstreams.map:/etc/nginx/upstreams.map:ro
- ./html:/usr/share/nginx/html:ro
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:4098/healthz"]
interval: 30s
timeout: 3s
retries: 3
start_period: 5s