2017-03-09 10:26:47 +08:00
|
|
|
<VirtualHost *:80>
|
2017-12-18 04:35:31 +08:00
|
|
|
ServerName laradock.test
|
2017-08-04 05:51:20 +08:00
|
|
|
DocumentRoot /var/www/
|
2017-03-09 10:26:47 +08:00
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
|
2017-08-04 05:51:20 +08:00
|
|
|
<Directory "/var/www/">
|
2017-03-09 10:26:47 +08:00
|
|
|
AllowOverride All
|
|
|
|
<IfVersion < 2.4>
|
|
|
|
Allow from all
|
|
|
|
</IfVersion>
|
|
|
|
<IfVersion >= 2.4>
|
|
|
|
Require all granted
|
|
|
|
</IfVersion>
|
|
|
|
</Directory>
|
|
|
|
|
2021-03-16 21:05:46 +08:00
|
|
|
ErrorLog /var/log/apache2/error.log
|
|
|
|
CustomLog /var/log/apache2/access.log combined
|
2017-03-09 10:26:47 +08:00
|
|
|
</VirtualHost>
|