You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
773 B
26 lines
773 B
5 years ago
|
<Directory /var/www/html/downtime>
|
||
|
Require all granted
|
||
|
AllowOverride None
|
||
|
Options None
|
||
|
</Directory>
|
||
|
|
||
|
<VirtualHost *:{{ httpd_port | default('80') }}>
|
||
|
ServerName downtime.{{ ansible_domain }}
|
||
|
DocumentRoot /var/www/html/downtime/
|
||
|
ErrorDocument 404 /
|
||
|
Include ansible_conf.d/common_env.inc
|
||
|
#Include ansible_conf.d/common_letsencrypt.inc
|
||
|
Include ansible_conf.d/common_force_ssl.inc
|
||
|
</VirtualHost>
|
||
|
<IfModule mod_ssl.c>
|
||
|
<VirtualHost *:{{ httpd_ssl_port | default('443') }}>
|
||
|
ServerName downtime.{{ ansible_domain }}
|
||
|
SSLEngine on
|
||
|
DocumentRoot /var/www/html/downtime/
|
||
|
ErrorDocument 404 /
|
||
|
Include ansible_conf.d/common_env.inc
|
||
|
Include ansible_conf.d/common_filter.inc
|
||
|
Include ansible_conf.d/common_perf.inc
|
||
|
</VirtualHost>
|
||
|
</IfModule>
|