[PHP] ; ── Upload Limits ────────────────────────────────────────────────────────── upload_max_filesize = 20M post_max_size = 25M ; ── Memory & Execution ───────────────────────────────────────────────────── memory_limit = 256M max_execution_time = 300 max_input_time = 60 ; ── Error Handling ───────────────────────────────────────────────────────── display_errors = Off display_startup_errors = Off log_errors = On error_log = /var/log/php-errors.log error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT ; ── Timezone ─────────────────────────────────────────────────────────────── date.timezone = Europe/Rome ; ── Session ──────────────────────────────────────────────────────────────── session.cookie_httponly = 1 session.cookie_secure = 1 session.use_strict_mode = 1 ; ── OPcache ──────────────────────────────────────────────────────────────── opcache.enable = 1 opcache.memory_consumption = 128 opcache.max_accelerated_files = 4000 opcache.validate_timestamps = 0