roles/caddy: smarter setting of document root

This commit is contained in:
Alan Orth 2025-03-29 19:33:02 +03:00
parent 7b23f5f94f
commit 84db337fea
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -8,6 +8,12 @@
{% set needs_php = item.needs_php | default(false) %}
{% set has_gitea = item.has_gitea | default(false) %}
{% set static_site = item.static_site | default(false) %}
{# Allow sites to override the document root #}
{% if item.document_root is defined %}
{% set document_root = item.document_root %}
{% else %}
{% set document_root = (caddy_root_prefix, domain_name) | ansible.builtin.path_join %}
{% endif %}
{% if domain_aliases %}
{# domain_aliases is a string, so we split on space #}
@ -22,7 +28,7 @@
{% if has_gitea %}
reverse_proxy :3000
{% elif static_site -%}
root * {{ item.document_root }}
root * {{ document_root }}
encode zstd gzip