2017-03-09 03:26:47 +01:00
|
|
|
<VirtualHost *:80>
|
|
|
|
ServerName sample.dev
|
2017-04-23 20:44:18 +02:00
|
|
|
DocumentRoot /var/www/sample/
|
2017-03-09 03:26:47 +01:00
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
|
2017-04-23 20:44:18 +02:00
|
|
|
<Directory "/var/www/sample/">
|
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>
|