15 lines
284 B
Plaintext
15 lines
284 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin ${APACHE_ADMIN_EMAIL}
|
|
|
|
<Directory /var/www/html>
|
|
Options -Indexes +FollowSymLinks
|
|
AllowOverride All
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|
|
|
|
|
|
|