19 lines
397 B
Plaintext
19 lines
397 B
Plaintext
<VirtualHost *:80>
|
|
ServerName laradock.test
|
|
DocumentRoot /var/www/
|
|
Options Indexes FollowSymLinks
|
|
|
|
<Directory "/var/www/">
|
|
AllowOverride All
|
|
<IfVersion < 2.4>
|
|
Allow from all
|
|
</IfVersion>
|
|
<IfVersion >= 2.4>
|
|
Require all granted
|
|
</IfVersion>
|
|
</Directory>
|
|
|
|
ErrorLog /var/log/apache2/error.log
|
|
CustomLog /var/log/apache2/access.log combined
|
|
</VirtualHost>
|