2017-03-01 15:55:33 +01:00
|
|
|
<VirtualHost *:$WEB_SERVER_PORT>
|
2017-02-25 21:25:33 +01:00
|
|
|
ServerAdmin me@mydomain.com
|
2017-03-01 15:55:33 +01:00
|
|
|
DocumentRoot ${WEB_DOCUMENT_ROOT}
|
|
|
|
ServerName ${SERVER_ALIAS}
|
2017-02-25 21:25:33 +01:00
|
|
|
|
2017-03-01 15:55:33 +01:00
|
|
|
<Directory ${WEB_DOCUMENT_ROOT}>
|
2017-02-25 21:25:33 +01:00
|
|
|
Options Indexes FollowSymLinks MultiViews
|
|
|
|
AllowOverride All
|
|
|
|
Order deny,allow
|
|
|
|
Allow from all
|
|
|
|
</Directory>
|
|
|
|
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
|
|
|
|
</VirtualHost>
|