2
0

ex variables: mise au point

This commit is contained in:
2020-05-07 10:27:36 +02:00
parent 571d33cc58
commit 3440a5ec26
8 changed files with 28 additions and 28 deletions

View File

@@ -1,17 +1,17 @@
<VirtualHost *:{{ http_port }}>
ServerName {{ servername }}
ServerAlias {{ serveralias }}
ServerName {{ apache_servername }}
ServerAlias {{ apache_serveralias }}
ServerAlias {{ inventory_hostname }}
DocumentRoot {{ documentroot }}
CustomLog {{ accesslog }} combined
ErrorLog {{ errorlog }}
DocumentRoot {{ apache_documentroot }}
CustomLog {{ apache_accesslog }} combined
ErrorLog {{ apache_errorlog }}
<Directory />
Options none
Allowoverride none
Require all denied
</Directory>
<Directory {{ documentroot }}>
<Directory {{ apache_documentroot }}>
Require all granted
</Directory>
</VirtualHost>