easyappointments/docker/php-fpm/php-ini-overrides.ini

18 lines
328 B
INI
Raw Normal View History

2024-12-19 20:02:54 +03:00
; Allow file uploads for up to 100MB
upload_max_filesize = 100M
2024-12-19 20:02:54 +03:00
; Allow processing up to 100MB
2023-06-03 10:33:19 +03:00
post_max_size = 100M
2024-12-19 20:02:54 +03:00
; Add support for XDebug connections
xdebug.mode = debug
xdebug.client_host = host.docker.internal
2023-07-29 12:52:21 +03:00
xdebug.log_level = 0
2024-12-19 20:02:54 +03:00
; Hide the deprecation messages by default
error_reporting = E_ALL & ~E_DEPRECATED