roles/caddy: improve vhost template

Support domain aliases that redirect to the main domain and allow
sites to say they are static sites where they only need a document
root.
This commit is contained in:
Alan Orth 2022-11-13 18:54:03 +03:00
parent 45c9d7ea0a
commit c840ffe018
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 18 additions and 0 deletions

View File

@ -7,11 +7,29 @@
{% set has_wordpress = item.has_wordpress | default(false) %}
{% set needs_php = item.needs_php | default(false) %}
{% set has_gitea = item.has_gitea | default(false) %}
{% set static_site = item.static_site | default(false) %}
{% if domain_aliases %}
{# domain_aliases is a string, so we split on space #}
{% for domain in domain_aliases | split (' ') %}
{{ domain }} {
redir https://{{domain_name}}{uri}
}
{% endfor %}
{% endif %}
{{ domain_name }} {
{% if has_gitea %}
reverse_proxy :3000
{% endif %}
{% if static_site -%}
root * {{ item.document_root }}
encode zstd gzip
file_server
{% endif %}
import security-headers
}