mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-12-20 21:52:22 +03:00
Update the php.ini overrides
This commit is contained in:
parent
0522e67444
commit
016bef8814
1 changed files with 12 additions and 0 deletions
|
@ -1,5 +1,17 @@
|
||||||
|
; Allow file uploads for up to 100MB
|
||||||
|
|
||||||
upload_max_filesize = 100M
|
upload_max_filesize = 100M
|
||||||
|
|
||||||
|
; Allow processing up to 100MB
|
||||||
|
|
||||||
post_max_size = 100M
|
post_max_size = 100M
|
||||||
|
|
||||||
|
; Add support for XDebug connections
|
||||||
|
|
||||||
xdebug.mode = debug
|
xdebug.mode = debug
|
||||||
xdebug.client_host = host.docker.internal
|
xdebug.client_host = host.docker.internal
|
||||||
xdebug.log_level = 0
|
xdebug.log_level = 0
|
||||||
|
|
||||||
|
; Hide the deprecation messages by default
|
||||||
|
|
||||||
|
error_reporting = E_ALL & ~E_DEPRECATED
|
||||||
|
|
Loading…
Reference in a new issue