blackbirdchess-docker-dev/apache2/sites/sample.conf.example
Winfried 690137a349 Changing docroots to have the same defaults
Caddy, NGINX and Apache2 should have the same default application paths. The `public/` path suffix is now added in the dotenv file to be able to use Laradock for non-laravel projects as well. Also, updated the documentation.
2017-04-23 20:44:18 +02:00

17 lines
321 B
Plaintext

<VirtualHost *:80>
ServerName sample.dev
DocumentRoot /var/www/sample/
Options Indexes FollowSymLinks
<Directory "/var/www/sample/">
AllowOverride All
<IfVersion < 2.4>
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
</VirtualHost>