default.apache.conf 319 B

12345678910111213141516
  1. <VirtualHost *:80>
  2. ServerName laradock.dev
  3. DocumentRoot /var/www/html/
  4. Options Indexes FollowSymLinks
  5. <Directory "/var/www/html/">
  6. AllowOverride All
  7. <IfVersion < 2.4>
  8. Allow from all
  9. </IfVersion>
  10. <IfVersion >= 2.4>
  11. Require all granted
  12. </IfVersion>
  13. </Directory>
  14. </VirtualHost>