This commit is contained in:
Saufi
2026-06-24 18:30:00 +08:00
commit c0c3d7c09c
122 changed files with 16321 additions and 0 deletions

13
docker/php/php-dev.ini Normal file
View 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
View 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
View 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