2025-02-19 07:53:26 -08:00
|
|
|
#!/usr/bin/env bash
|
2026-05-12 15:24:28 -07:00
|
|
|
# Container entrypoint. Two-phase startup:
|
|
|
|
|
# 1. One-shot init (init.py): DB schema, certbot register, config gen, start HAProxy.
|
|
|
|
|
# Runs synchronously and to completion so haproxy is up before the API binds.
|
|
|
|
|
# 2. WSGI serving via gunicorn (replacing the Flask dev server). Two gunicorn
|
|
|
|
|
# instances:
|
|
|
|
|
# - port 8080 -> default_app (default page + blocked-ip page; HAProxy
|
|
|
|
|
# proxies unmatched / blocked traffic here)
|
|
|
|
|
# - port 8000 -> app (management API)
|
|
|
|
|
#
|
|
|
|
|
# Why gunicorn:
|
|
|
|
|
# Flask's built-in werkzeug "development server" is single-threaded and leaks
|
|
|
|
|
# workers under sustained load. It carried haproxy-manager for a long time but
|
|
|
|
|
# stalled out around 24-48h uptime ("healthy" health-check, but every request
|
|
|
|
|
# queued behind a stuck worker). Gunicorn with --max-requests cycles workers
|
|
|
|
|
# periodically, which prevents the slow-leak failure mode entirely.
|
2025-02-19 07:53:26 -08:00
|
|
|
|
|
|
|
|
set -eo pipefail
|
2026-04-30 10:02:16 -07:00
|
|
|
|
|
|
|
|
# Ensure trusted IP whitelist files exist (volume-mounted /etc/haproxy may shadow image defaults)
|
|
|
|
|
mkdir -p /etc/haproxy
|
|
|
|
|
[ -f /etc/haproxy/trusted_ips.list ] || : > /etc/haproxy/trusted_ips.list
|
|
|
|
|
[ -f /etc/haproxy/trusted_ips.map ] || : > /etc/haproxy/trusted_ips.map
|
2026-08-13 13:48:34 -07:00
|
|
|
|
|
|
|
|
# cloudflare_ips.list is SHIPPED DATA: it must always match what this image
|
|
|
|
|
# bakes in (/haproxy/defaults), so a Cloudflare range refresh actually reaches
|
|
|
|
|
# existing hosts instead of being permanently shadowed by the volume.
|
|
|
|
|
# Overwrite it from the baked copy on every start.
|
|
|
|
|
#
|
2026-08-14 07:43:20 -07:00
|
|
|
# trusted_proxies.list and wpadmin_gate_exempt.list are OPERATOR DATA:
|
|
|
|
|
# operators add entries directly on the server and those must survive
|
|
|
|
|
# restarts/recreates. Seed each from the baked copy only when it's missing;
|
|
|
|
|
# never overwrite an existing one.
|
2026-08-13 13:48:34 -07:00
|
|
|
#
|
2026-08-14 07:43:20 -07:00
|
|
|
# All branches fall back to an empty file if the baked default is somehow
|
2026-08-13 13:48:34 -07:00
|
|
|
# absent, because "acl ... -f <missing file>" is a fatal HAProxy config
|
|
|
|
|
# error -- the list files must exist unconditionally by the time HAProxy starts.
|
|
|
|
|
if [ -f /haproxy/defaults/cloudflare_ips.list ]; then
|
|
|
|
|
cp /haproxy/defaults/cloudflare_ips.list /etc/haproxy/cloudflare_ips.list
|
|
|
|
|
else
|
|
|
|
|
[ -f /etc/haproxy/cloudflare_ips.list ] || : > /etc/haproxy/cloudflare_ips.list
|
|
|
|
|
fi
|
|
|
|
|
if [ ! -f /etc/haproxy/trusted_proxies.list ]; then
|
|
|
|
|
if [ -f /haproxy/defaults/trusted_proxies.list ]; then
|
|
|
|
|
cp /haproxy/defaults/trusted_proxies.list /etc/haproxy/trusted_proxies.list
|
|
|
|
|
else
|
|
|
|
|
: > /etc/haproxy/trusted_proxies.list
|
|
|
|
|
fi
|
|
|
|
|
fi
|
2026-08-14 07:43:20 -07:00
|
|
|
if [ ! -f /etc/haproxy/wpadmin_gate_exempt.list ]; then
|
|
|
|
|
if [ -f /haproxy/defaults/wpadmin_gate_exempt.list ]; then
|
|
|
|
|
cp /haproxy/defaults/wpadmin_gate_exempt.list /etc/haproxy/wpadmin_gate_exempt.list
|
|
|
|
|
else
|
|
|
|
|
: > /etc/haproxy/wpadmin_gate_exempt.list
|
|
|
|
|
fi
|
|
|
|
|
fi
|
2026-04-30 10:02:16 -07:00
|
|
|
|
2025-02-20 13:41:38 -08:00
|
|
|
cron &
|
2026-05-12 15:24:28 -07:00
|
|
|
|
|
|
|
|
# Phase 1: container init
|
|
|
|
|
python /haproxy/scripts/init.py
|
|
|
|
|
|
2026-07-01 09:07:11 -07:00
|
|
|
# Phase 1.5: in-container haproxy supervisor.
|
|
|
|
|
# haproxy runs as a background child of PID 1 (gunicorn) with NOTHING watching
|
|
|
|
|
# it after init. If the haproxy master dies mid-life (e.g. SIGABRT -> exit 134,
|
|
|
|
|
# segfault), the container stays "up" (gunicorn is PID 1), Docker's --restart
|
|
|
|
|
# policy never fires, and haproxy is down until the external host watchdog
|
|
|
|
|
# full-restarts the whole container minutes later (dropping every connection).
|
|
|
|
|
# This loop revives haproxy in place within one interval. ensure_haproxy.py is
|
|
|
|
|
# idempotent — a cheap no-op whenever haproxy is already running.
|
|
|
|
|
HAPROXY_SUPERVISOR_INTERVAL="${HAPROXY_SUPERVISOR_INTERVAL:-15}"
|
|
|
|
|
(
|
|
|
|
|
while true; do
|
|
|
|
|
sleep "${HAPROXY_SUPERVISOR_INTERVAL}"
|
|
|
|
|
python /haproxy/scripts/ensure_haproxy.py 2>&1 || true
|
|
|
|
|
done
|
|
|
|
|
) &
|
|
|
|
|
|
2026-05-12 15:24:28 -07:00
|
|
|
# Phase 2: WSGI servers
|
|
|
|
|
# Tunable via env: HAPROXY_MGR_API_WORKERS (default 1), HAPROXY_MGR_API_TIMEOUT
|
|
|
|
|
# (default 120 — API can do slow ACME calls), HAPROXY_MGR_MAX_REQUESTS (default
|
|
|
|
|
# 1000 — worker recycle frequency).
|
2026-07-06 17:31:44 -07:00
|
|
|
#
|
|
|
|
|
# API_WORKERS default is 2 (was 1). A single worker is a single point of
|
|
|
|
|
# failure: if its gthread pool ever wedges (see the 2026-07-07 subprocess-hang
|
|
|
|
|
# incident — now bounded by DEFAULT_SUBPROCESS_TIMEOUT in haproxy_manager.py),
|
|
|
|
|
# the entire management API goes dark. A second worker keeps the API answering
|
|
|
|
|
# (config regenerate, health, SSL) while the other recycles via --max-requests.
|
|
|
|
|
API_WORKERS="${HAPROXY_MGR_API_WORKERS:-2}"
|
2026-05-12 15:24:28 -07:00
|
|
|
API_TIMEOUT="${HAPROXY_MGR_API_TIMEOUT:-120}"
|
|
|
|
|
MAX_REQ="${HAPROXY_MGR_MAX_REQUESTS:-1000}"
|
|
|
|
|
MAX_REQ_JITTER="${HAPROXY_MGR_MAX_REQUESTS_JITTER:-100}"
|
|
|
|
|
|
|
|
|
|
# Default page server on :8080. Stays in the background.
|
|
|
|
|
# --threads 4 lets one worker handle bursts of blocked-IP/default-page hits
|
|
|
|
|
# without forking. --max-requests recycles the worker to bound memory drift.
|
|
|
|
|
gunicorn \
|
|
|
|
|
--bind 0.0.0.0:8080 \
|
|
|
|
|
--workers 1 --threads 4 --worker-class gthread \
|
|
|
|
|
--max-requests "${MAX_REQ}" --max-requests-jitter "${MAX_REQ_JITTER}" \
|
|
|
|
|
--timeout 30 \
|
|
|
|
|
--access-logfile - --error-logfile - --log-level info \
|
|
|
|
|
--pythonpath /haproxy \
|
|
|
|
|
'haproxy_manager:default_app' &
|
|
|
|
|
|
|
|
|
|
# Main API server on :8000 in the foreground. exec so signals propagate
|
|
|
|
|
# correctly and the container exits if the API dies (docker --restart picks it
|
|
|
|
|
# up). Longer --timeout because cert issuance hits ACME and can take a while.
|
|
|
|
|
exec gunicorn \
|
|
|
|
|
--bind 0.0.0.0:8000 \
|
|
|
|
|
--workers "${API_WORKERS}" --threads 4 --worker-class gthread \
|
|
|
|
|
--max-requests "${MAX_REQ}" --max-requests-jitter "${MAX_REQ_JITTER}" \
|
|
|
|
|
--timeout "${API_TIMEOUT}" \
|
|
|
|
|
--access-logfile - --error-logfile - --log-level info \
|
|
|
|
|
--pythonpath /haproxy \
|
|
|
|
|
'haproxy_manager:app'
|