11 lines
282 B
ApacheConf
11 lines
282 B
ApacheConf
<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>
|