first
This commit is contained in:
13
docker/php/php-dev.ini
Normal file
13
docker/php/php-dev.ini
Normal file
@@ -0,0 +1,13 @@
|
||||
; ──────────────────────────────────────────────────────────────────────────────
|
||||
; KOIPB MAT — Development overrides (dimuat selepas php.ini)
|
||||
; Hanya dimuat dalam docker-compose.yml (dev), tidak dalam prod
|
||||
; ──────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
; Reload fail PHP tanpa restart container
|
||||
opcache.validate_timestamps = 1
|
||||
opcache.revalidate_freq = 0
|
||||
|
||||
; Tunjuk ralat semasa pembangunan
|
||||
display_errors = On
|
||||
display_startup_errors = On
|
||||
error_reporting = E_ALL
|
||||
11
docker/php/php-prod.ini
Normal file
11
docker/php/php-prod.ini
Normal file
@@ -0,0 +1,11 @@
|
||||
; ──────────────────────────────────────────────────────────────────────────────
|
||||
; KOIPB MAT — Production overrides (dimuat selepas php.ini)
|
||||
; Hanya dimuat dalam docker-compose.prod.yml
|
||||
; ──────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
; Prestasi: jangan semak timestamp fail (kosongkan cache bila deploy)
|
||||
opcache.validate_timestamps = 0
|
||||
|
||||
; Sembunyikan ralat dari pengguna
|
||||
display_errors = Off
|
||||
display_startup_errors = Off
|
||||
45
docker/php/php.ini
Normal file
45
docker/php/php.ini
Normal file
@@ -0,0 +1,45 @@
|
||||
; ──────────────────────────────────────────────────────────────────────────────
|
||||
; KOIPB MAT — PHP Runtime Configuration
|
||||
; Letakkan dalam /usr/local/etc/php/conf.d/99-koipb.ini
|
||||
; ──────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
; Timezone Malaysia
|
||||
date.timezone = Asia/Kuala_Lumpur
|
||||
|
||||
; ── Muat naik (import CSV/XLSX anggota & hadiah) ──────────────────────────────
|
||||
upload_max_filesize = 20M
|
||||
post_max_size = 25M
|
||||
max_file_uploads = 10
|
||||
|
||||
; ── Pelaksanaan ───────────────────────────────────────────────────────────────
|
||||
max_execution_time = 120
|
||||
max_input_time = 120
|
||||
|
||||
; ── Memori (eksport PDF/XLSX) ─────────────────────────────────────────────────
|
||||
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), override 0 untuk prod
|
||||
opcache.validate_timestamps = 1
|
||||
opcache.revalidate_freq = 2
|
||||
opcache.fast_shutdown = 1
|
||||
|
||||
; ── Ralat (default selamat — override per environment) ────────────────────────
|
||||
display_errors = Off
|
||||
display_startup_errors = Off
|
||||
log_errors = On
|
||||
error_log = /var/log/php_errors.log
|
||||
|
||||
output_buffering = 4096
|
||||
|
||||
sys_temp_dir = /tmp
|
||||
upload_tmp_dir = /tmp
|
||||
Reference in New Issue
Block a user