blob: 22d948a671930ce9f92edfe766f8753ca32ec1ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# This file is managed by Ansible. Do not change.
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerName {{ item.value.hostname }}
ServerAdmin webmaster@localhost
DocumentRoot /var/www/{{ item.key }}/{{ item.value.relative_root }}
<Directory /var/www/{{ item.key }}>
AllowOverride All
Require all granted
</Directory>
Include ssl.conf
{{ item.value.apache_custom_conf | default("") }}
</VirtualHost>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|