; OPcache — production tuning for ClinicPro. ; validate_timestamps=0: code never changes at runtime in an immutable image, so ; skip stat() checks for max throughput. (A new deploy = a new image.) ; preload: warms the Symfony container/classes into shared memory at FPM start; ; runs as www-data, so app files must be readable by www-data (see Dockerfile). opcache.enable = 1 opcache.enable_cli = 0 opcache.memory_consumption = 256 opcache.max_accelerated_files = 20000 opcache.validate_timestamps = 0 opcache.interned_strings_buffer = 16 opcache.preload = /app/config/preload.php opcache.preload_user = www-data