docker-apache-sql-php/docker/apache/vhosts/000-default.conf

24 lines
458 B
Plaintext
Raw Normal View History

2023-11-26 10:54:25 +00:00
<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>