16 lines
566 B
Plaintext
16 lines
566 B
Plaintext
<VirtualHost *:80>
|
|
ServerName {{ apache_site_name }}
|
|
ServerAlias www.{{ apache_site_name }}
|
|
DocumentRoot {{ apache_documentroot }}/
|
|
CustomLog /var/log/httpd/{{ apache_site_name }}_access.log combined
|
|
ErrorLog /var/log/httpd/{{ apache_site_name }}_error.log
|
|
<Directory />
|
|
Options none
|
|
Allowoverride none
|
|
Require all denied
|
|
</Directory>
|
|
|
|
<Directory {{ apache_documentroot }}>
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost> |