24 lines
516 B
INI
24 lines
516 B
INI
; Production PHP configuration for Laravel Docker deployment
|
|
|
|
; Upload limits (matches UPLOAD_MAX_FILE_SIZE in .env = 100MB)
|
|
upload_max_filesize = 100M
|
|
post_max_size = 110M
|
|
|
|
; Memory and execution
|
|
memory_limit = 256M
|
|
max_execution_time = 300
|
|
max_input_time = 300
|
|
|
|
; Error logging (logs to stderr → Docker logs)
|
|
log_errors = On
|
|
error_log = /dev/stderr
|
|
error_reporting = E_ALL
|
|
display_errors = Off
|
|
display_startup_errors = Off
|
|
|
|
; Timezone
|
|
date.timezone = Europe/Berlin
|
|
|
|
; File uploads temp dir
|
|
upload_tmp_dir = /tmp
|