From 467d8b3ff78312f6bc8d9d2795a8feddbf03ce56 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Mon, 21 Jan 2019 17:55:53 +0100 Subject: [PATCH] [ci skip] Add opcache.preload directive --- php.ini-development | 5 +++++ php.ini-production | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/php.ini-development b/php.ini-development index 52192e1a78..0566267c2f 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1897,6 +1897,11 @@ ldap.max_links = -1 ; optimizations. ;opcache.opt_debug_level=0 +; Specifies a PHP script that is going to be compiled and executed at server +; start-up. +; http://php.net/opcache.preload +;opcache.preload= + [curl] ; A default value for the CURLOPT_CAINFO option. This is required to be an ; absolute path. diff --git a/php.ini-production b/php.ini-production index 1bffa86a97..9ae24dba2c 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1904,6 +1904,11 @@ ldap.max_links = -1 ; optimizations. ;opcache.opt_debug_level=0 +; Specifies a PHP script that is going to be compiled and executed at server +; start-up. +; http://php.net/opcache.preload +;opcache.preload= + [curl] ; A default value for the CURLOPT_CAINFO option. This is required to be an ; absolute path. -- 2.50.1