file-explorer/.docker/hosts/file-explorer.conf
Constantin Simonis edb59e3753
All checks were successful
build / build (push) Successful in 3m55s
test
2024-12-04 18:08:03 +01:00

22 lines
557 B
Plaintext

<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/project/public
DirectoryIndex /index.php
<Directory /var/www/project/public>
AllowOverride All
Order Allow,Deny
Require all granted
<IfModule mod_rewrite.c>
RewriteEngine On
</IfModule>
</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>