blackbirdchess-docker-dev/apache2/apache-config.conf

16 lines
378 B
Plaintext

<VirtualHost *:8888>
ServerAdmin me@mydomain.com
DocumentRoot /var/www/site
ServerName local.mydomain.com
<Directory /var/www/site/>
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>