17 lines
328 B
Plaintext
17 lines
328 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin ${APACHE_ADMIN_EMAIL}
|
|
|
|
DocumentRoot ${APACHE_ROOT_PATH}
|
|
|
|
<Directory ${APACHE_ROOT_PATH}>
|
|
Options -Indexes +FollowSymLinks
|
|
AllowOverride All
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|
|
|
|
|
|
|