feat(all): first commit

This commit is contained in:
2023-06-13 09:12:30 +02:00
commit e4b3270874
24 changed files with 783 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<VirtualHost *:80>
DocumentRoot /var/www/public
SetEnv APP_DEBUG ${APP_DEBUG}
SetEnv APP_ENV ${APP_ENV}
SetEnv HYDRA_ADMIN_BASE_URL ${HYDRA_ADMIN_BASE_URL}
SetEnv ASSETS_BASE_URL ${ASSETS_BASE_URL}
<Directory /var/www/public>
AllowOverride None
Order Allow,Deny
Allow from All
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
</Directory>
CustomLog /dev/stdout combined
ErrorLog /dev/stderr
</VirtualHost>