Update to 2022-07-08 17:00

This commit is contained in:
Daniel Berteaud
2022-07-08 17:00:16 +02:00
parent 0319e1f4a1
commit 05356e71fe
6 changed files with 10 additions and 3 deletions

View File

@@ -14,6 +14,9 @@
{% if vhost.aliases is defined %}
ServerAlias {{ vhost.aliases | default([]) | join(' ') }}
{% endif %}
{% if vhost.proxy_timeout is defined %}
ProxyTimeout {{ vhost.proxy_timeout }}
{% endif %}
{% if vhost.webmaster_email is defined %}
ServerAdmin {{ vhost.webmaster_email }}
{% endif %}
@@ -107,6 +110,9 @@
{% if vhost.aliases is defined %}
ServerAlias {{ vhost.aliases | default([]) | join(' ') }}
{% endif %}
{% if vhost.proxy_timeout is defined %}
ProxyTimeout {{ vhost.proxy_timeout }}
{% endif %}
{% if vhost.webmaster_email is defined %}
ServerAdmin {{ vhost.webmaster_email }}
{% endif %}