16 lines
387 B
Plaintext
16 lines
387 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot /var/www/html/public
|
|
|
|
<Directory /var/www/html/public>
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
DirectoryIndex index.php
|
|
FallbackResource /index.php
|
|
</Directory>
|
|
|
|
ErrorLog /proc/self/fd/2
|
|
CustomLog /proc/self/fd/1 combined
|
|
</VirtualHost>
|