file-explorer/.docker/hosts/file-explorer.conf
Constantin Simonis b4294d3fad
Some checks are pending
build / deploy (push) Waiting to run
dockerize project
2024-12-04 14:51:27 +01:00

19 lines
474 B
Plaintext

<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>