file-explorer/.docker/hosts/file-explorer.conf

19 lines
474 B
Plaintext
Raw Normal View History

2024-12-04 14:51:27 +01:00
<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/project/public
DirectoryIndex /index.php
<Directory /var/www/project/public>
AllowOverride None
Order Allow,Deny
Allow from All
</Directory>
# <Directory /var/www/project/public/bundles>
# FallbackResource disabled
# </Directory>
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined
</VirtualHost>