blackbirdchess-docker-dev/apache2/sites/default.apache.conf

19 lines
397 B
Plaintext
Raw Normal View History

2017-03-09 03:26:47 +01:00
<VirtualHost *:80>
ServerName laradock.test
DocumentRoot /var/www/
2017-03-09 03:26:47 +01:00
Options Indexes FollowSymLinks
<Directory "/var/www/">
2017-03-09 03:26:47 +01:00
AllowOverride All
<IfVersion < 2.4>
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined
2017-03-09 03:26:47 +01:00
</VirtualHost>