file-explorer/.docker/hosts/file-explorer.conf
Constantin Simonis 334efa1ecd
All checks were successful
build / build (push) Successful in 3m54s
dockerize project
Reviewed-on: sites/file-explorer#2
2024-12-04 17:33:42 +00:00

20 lines
504 B
Plaintext

<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/project/public
DirectoryIndex /index.php
<Directory /var/www/project/public>
AllowOverride All
<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>