Files
f3-simple-blog/docker/apache-vhost.conf
2026-03-27 14:43:08 +01:00

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>