• File: default.apache.conf
  • Full Path: /var/www/laradock/laradock/apache2/sites/default.apache.conf
  • Date Modified: 01/12/2022 3:50 PM
  • File size: 415 bytes
  • MIME-type: text/plain
  • Charset: utf-8
<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>