Apache 2.4 + PHP 8.2 โ Production VPS
A complete deployment configuration for running the Rediafile Developer Portal on a standard Linux VPS with Apache and mod_rewrite.
; Rediafile Developer Portal โ php.ini tuning for 10GB uploads
upload_max_filesize = 10240M
post_max_size = 10240M
max_execution_time = 3600
max_input_time = 3600
memory_limit = 512M
max_file_uploads = 100
; Production error handling
display_errors = Off
error_reporting = E_ALL & ~E_DEPRECATED & ~E_NOTICE
log_errors = On
; Session security
session.cookie_httponly = 1
session.cookie_samesite = "Lax"
session.use_strict_mode = 1
; OPcache (recommended)
opcache.enable = 1
opcache.memory_consumption = 128
opcache.max_accelerated_files = 10000