Initial Commit

This commit is contained in:
2019-11-21 12:25:31 +01:00
commit f4aabcb9b1
13959 changed files with 787761 additions and 0 deletions

14
docker/php/config/php.ini Normal file
View File

@@ -0,0 +1,14 @@
post_max_size=20M
html_errors=On
display_errors=On
date.timezone=Europe/Paris
memory_limit=-1
[xdebug]
xdebug.cli_color=1
xdebug.var_display_max_children=-1
xdebug.var_display_max_depth=-1
xdebug.var_display_max_data=-1
xdebug.remote_enable=1
xdebug.remote_connect_back=1
xdebug.remote_port=9000

View File

@@ -0,0 +1,11 @@
<VirtualHost *:80>
DocumentRoot /var/www/html/web
SetEnv SYMFONY_ENV "dev"
<Directory /var/www/html/web>
DirectoryIndex index.php
AllowOverride All
Require all granted
</Directory>
</VirtualHost>