19 lines
632 B
Plaintext
19 lines
632 B
Plaintext
{% for vhost in apache_vhosts %}
|
|
<VirtualHost *:{{ http_port }}>
|
|
ServerName {{ vhost.servername|lower }}
|
|
ServerAlias {{ vhost.serveralias }}
|
|
DocumentRoot {{ vhost.documentroot }}
|
|
CustomLog {{ vhost.accesslog }} combined
|
|
ErrorLog {{ vhost.errorlog }}
|
|
<Directory />
|
|
Options none
|
|
Allowoverride none
|
|
Require all denied
|
|
</Directory>
|
|
|
|
<Directory {{ vhost.documentroot }}>
|
|
Options {{ vhost.documentrootoptions|default( "none" ) }}
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|
|
{% endfor %} |