Implements the Caddy reverse proxy role (ADR-024): builds boma/caddy-gandi:latest on-host (caddy-dns/gandi plugin), renders Caddyfile from route catalog, brings Compose project up. Adds community.docker to requirements.yml, production group_vars, and a caddy-image Makefile target. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
18 lines
367 B
YAML
18 lines
367 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
gather_facts: true
|
|
|
|
vars:
|
|
reverse_proxy__manage: false
|
|
reverse_proxy__acme_domain: example.test
|
|
reverse_proxy__acme_email: admin@example.test
|
|
reverse_proxy__routes:
|
|
- host: app.example.test
|
|
upstream: "app:80"
|
|
vault:
|
|
gandi:
|
|
pat: "molecule-dummy"
|
|
|
|
roles:
|
|
- role: reverse_proxy
|