2017-03-09 03:26:47 +01:00
|
|
|
<VirtualHost *:80>
|
2017-12-17 21:35:31 +01:00
|
|
|
ServerName laradock.test
|
2017-08-03 23:51:20 +02:00
|
|
|
DocumentRoot /var/www/
|
2017-03-09 03:26:47 +01:00
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
|
2017-08-03 23:51:20 +02:00
|
|
|
<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>
|
|
|
|
|
2021-03-16 14:05:46 +01:00
|
|
|
ErrorLog /var/log/apache2/error.log
|
|
|
|
CustomLog /var/log/apache2/access.log combined
|
2017-03-09 03:26:47 +01:00
|
|
|
</VirtualHost>
|