Files
system-config/caddy/compose.yml
T
James WamplerandClaude Sonnet 5 5fe333210e feat(caddy): add novelly.com routes, pin acme_ca to LE prod
Force prod ACME endpoint explicitly; renewal was silently hitting
staging, which blocked *.wampler.us cert renewal.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01DPXhxhLUopnuDm3dWeHd5C
2026-08-20 16:57:32 -07:00

50 lines
1001 B
YAML

services:
caddy:
build: ../../caddy-dns-cloudflare
container_name: caddy
restart: unless-stopped
cap_add:
- NET_ADMIN
env_file:
- .env
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
ports:
- "80:80"
- "443:443"
- "443:443/udp"
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ./conf:/etc/caddy
- /mnt/storage/apps/caddy/data:/data
- /mnt/storage/apps/caddy/config:/config
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80"]
interval: 30s
timeout: 10s
retries: 3
start_period: 20s
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
networks:
- proxy
- miccheck-qa-net
- novelly-net
networks:
proxy:
name: proxy
external: true
miccheck-qa-net:
name: miccheck-qa-net
external: true
novelly-net:
name: novelly-net
external: true