freescout/apache2.conf

11 lines
282 B
ApacheConf
Raw Normal View History

2023-12-21 21:57:52 +00:00
<VirtualHost *:80>
#ServerName example.com
DocumentRoot "/var/www/html/public"
Options Indexes FollowSymLinks
ErrorLog /var/www/html/storage/logs/web-server.log
<Directory "/var/www/html/public">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>