16 lines
431 B
Plaintext
16 lines
431 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@ansible.local
|
|
ServerName ansible.local
|
|
ServerAlias www.ansible.local
|
|
|
|
DocumentRoot /var/www/html
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/ansible.local_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/ansible.local_access.log combined
|
|
|
|
<Directory /var/www/html>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost> |