the middle of the idiots

This commit is contained in:
2025-10-24 16:29:40 -05:00
parent 6a58e19b10
commit 721301c779
2472 changed files with 237076 additions and 418 deletions

View File

@@ -1,6 +1,38 @@
; Custom PHP configuration
memory_limit = 256M
upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300
max_input_vars = 3000
; docker/php.ini
; PHP configuration for development environment
; Enable opcache for better performance
opcache.enable=1
opcache.memory_consumption=256
opcache.max_accelerated_files=7963
opcache.revalidate_freq=0
opcache.fast_shutdown=1
; Development settings
display_errors=On
display_startup_errors=On
error_reporting=E_ALL
log_errors=On
html_errors=Off
; Memory limits
memory_limit=512M
max_execution_time=300
max_input_time=300
max_input_vars=5000
; File upload settings
file_uploads=On
upload_max_filesize=64M
post_max_size=64M
; Session settings
session.auto_start=Off
session.use_only_cookies=On
session.use_strict_mode=On
session.cookie_httponly=On
session.cookie_secure=Off
session.use_cookies=On
; Security settings
expose_php=Off