2017-03-09 03:26:47 +01:00
|
|
|
<VirtualHost *:80>
|
2017-12-17 21:35:31 +01:00
|
|
|
ServerName sample.test
|
2017-05-01 12:36:31 +02:00
|
|
|
DocumentRoot /var/www/sample/public/
|
2017-03-09 03:26:47 +01:00
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
|
2017-05-01 12:36:31 +02:00
|
|
|
<Directory "/var/www/sample/public/">
|
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>
|
|
|
|
|
|
|
|
</VirtualHost>
|