docker-apache-sql-php/docker/apache/vhosts/000-default.conf
Jeff Lance 83a5a4660e up
2023-11-26 11:54:25 +01:00

24 lines
458 B
Plaintext

<VirtualHost *:80>
#
# Following lines need to be updated to your needs
#
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/public
DirectoryIndex /index.php
<Directory /var/www/html/public>
AllowOverride None
Order Allow,Deny
Allow from All
FallbackResource /index.php
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>