16 lines
482 B
Plaintext
16 lines
482 B
Plaintext
<VirtualHost *:{{ http_port }}>
|
|
ServerName {{ servername }}
|
|
ServerAlias {{ serveralias }}
|
|
DocumentRoot {{ documentroot }}
|
|
CustomLog {{ accesslog }} combined
|
|
ErrorLog {{ errorlog }}
|
|
<Directory />
|
|
Options none
|
|
Allowoverride none
|
|
Require all denied
|
|
</Directory>
|
|
|
|
<Directory {{ documentroot }}>
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost> |