52 lines
2.9 KiB
INI
52 lines
2.9 KiB
INI
; ──────────────────────────────────────────────────────────────────────────────
|
|
; eCert MBIP — PHP Runtime Configuration
|
|
; Letakkan dalam /usr/local/etc/php/conf.d/99-ecert.ini
|
|
; ──────────────────────────────────────────────────────────────────────────────
|
|
|
|
; Timezone Malaysia
|
|
date.timezone = Asia/Kuala_Lumpur
|
|
|
|
; ── Upload (template sijil hingga 10MB + buffer) ──────────────────────────────
|
|
upload_max_filesize = 20M
|
|
post_max_size = 25M
|
|
max_file_uploads = 10
|
|
|
|
; ── Execution (image generation + queue workers) ──────────────────────────────
|
|
max_execution_time = 120
|
|
max_input_time = 120
|
|
|
|
; ── Memory (Intervention Image untuk sijil resolusi tinggi) ───────────────────
|
|
memory_limit = 512M
|
|
|
|
; ── Session ───────────────────────────────────────────────────────────────────
|
|
session.cookie_httponly = 1
|
|
session.cookie_samesite = Lax
|
|
session.gc_maxlifetime = 7200
|
|
|
|
; ── OPcache ───────────────────────────────────────────────────────────────────
|
|
opcache.enable = 1
|
|
opcache.memory_consumption = 192
|
|
opcache.interned_strings_buffer = 16
|
|
opcache.max_accelerated_files = 10000
|
|
; validate_timestamps: 1 untuk dev (auto-reload), 0 untuk prod (prestasi)
|
|
opcache.validate_timestamps = 1
|
|
opcache.revalidate_freq = 2
|
|
opcache.fast_shutdown = 1
|
|
|
|
; ── Error (override per environment via APP_ENV) ──────────────────────────────
|
|
display_errors = Off
|
|
display_startup_errors = Off
|
|
log_errors = On
|
|
error_log = /var/log/php_errors.log
|
|
|
|
; ── Output buffering (elak "headers already sent" dari PHP notices) ───────────
|
|
output_buffering = 4096
|
|
|
|
; ── Temporary files ───────────────────────────────────────────────────────────
|
|
sys_temp_dir = /tmp
|
|
upload_tmp_dir = /tmp
|
|
|
|
; ── imagick ───────────────────────────────────────────────────────────────────
|
|
[imagick]
|
|
imagick.skip_version_check = 1
|