0e549cad46
Original PHP source rsync'd from production server (slot-ss.com) on 2026-04-27. Excluded from import: - data/editor (74GB user uploads), data/file (8.5GB attachments) - data/member_image, vendor/, db100up/, caches/sessions/logs/tmp Includes: - 11,636 files, ~206MB source code (gnuboard5 v5.6.6, Eyoom builder, YoungCart 4) - 28 plugins (bacara, chatbot, cron, swiunApi, sns, sms5, ...) - Active theme: eb4_maga_005 (Eyoom magazine layout) - Local Docker dev stack (PHP 7.4 + Apache + Redis + MariaDB) under docker/ - PostgreSQL migration setup (pgloader configs) under db/ - Architecture/migration docs under docs/ Single non-source patch: src/config.php now reads G5_DOMAIN_OVERRIDE env var so the local Docker stack can serve at http://localhost:8088 without touching the production constant. Falls back to https://slot-ss.com when unset.
17 lines
500 B
INI
17 lines
500 B
INI
; PHP overrides for slot-ss.com local replica
|
|
date.timezone = "Asia/Seoul"
|
|
default_charset = "UTF-8"
|
|
short_open_tag = On
|
|
upload_max_filesize = 100M
|
|
post_max_size = 100M
|
|
memory_limit = 512M
|
|
max_execution_time = 120
|
|
display_errors = Off
|
|
display_startup_errors = Off
|
|
error_reporting = E_ERROR | E_PARSE | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR
|
|
log_errors = On
|
|
error_log = /var/log/apache2/php_errors.log
|
|
session.cookie_httponly = 1
|
|
mbstring.internal_encoding = UTF-8
|
|
mbstring.http_output = UTF-8
|