blackbirdchess-docker-dev/apache2/sites/sample.conf.example

17 lines
336 B
Plaintext
Raw Normal View History

2017-03-09 03:26:47 +01:00
<VirtualHost *:80>
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>