2024-06-17 17:27:27 +02:00
|
|
|
{% if caddy_use_local_certs %}
|
|
|
|
{
|
2024-12-22 16:16:28 +01:00
|
|
|
local_certs
|
2024-06-17 17:27:27 +02:00
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% for site in caddy_sites %}
|
|
|
|
{{ site.name }} {
|
|
|
|
{% if site.directives is defined %}
|
2024-12-22 16:16:28 +01:00
|
|
|
{{ site.directives | indent }}
|
2024-06-17 17:27:27 +02:00
|
|
|
{% endif %}
|
|
|
|
{% if site.proxy_to is defined %}
|
2024-12-22 16:16:28 +01:00
|
|
|
reverse_proxy {{ site.proxy_to }}
|
2024-06-17 17:27:27 +02:00
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
|
|
|
|
{% endfor %}
|