church-website/infra/ansible/roles/caddy/templates/Caddyfile.j2
Benno Tielen cb6e811c52
Some checks failed
Deploy / deploy (push) Has been cancelled
feature: infra
2026-08-17 15:48:55 +02:00

12 lines
253 B
Django/Jinja

{% for site in caddy_domains %}
{{ site.domain }} {
reverse_proxy localhost:{{ site.proxy_port }}
}
{% endfor %}
{% for redirect in caddy_redirects | default([]) %}
{{ redirect.from }} {
redir https://{{ redirect.to }}{uri} permanent
}
{% endfor %}