diff options
author | Leigh <leigh@php.net> | 2016-12-12 12:23:50 +0000 |
---|---|---|
committer | Leigh <leigh@php.net> | 2016-12-12 12:23:50 +0000 |
commit | ff8fbf41c1e3ad96b7065c380e9a054092c94842 (patch) | |
tree | 70f13d9c693c5401ef52ea7ac88560545864f2ab /php.ini-production | |
parent | 56908edfbe1507bbeda6949ac512847a02a5353f (diff) | |
parent | 505d0b0966592b3e03a7301a6ddc4ee406dbb767 (diff) | |
download | php-git-ff8fbf41c1e3ad96b7065c380e9a054092c94842.tar.gz |
Merge branch 'master' into remove-mcrypt
Diffstat (limited to 'php.ini-production')
-rw-r--r-- | php.ini-production | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/php.ini-production b/php.ini-production index 0b48928979..ef297e3f87 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1195,6 +1195,19 @@ mysqlnd.collect_statistics = On ; http://php.net/mysqlnd.collect_memory_statistics mysqlnd.collect_memory_statistics = Off +; Records communication from all extensions using mysqlnd to the specified log +; file. +; http://php.net/mysqlnd.debug +;mysqlnd.debug = + +; Defines which queries will be logged. +; http://php.net/mysqlnd.log_mask +;mysqlnd.log_mask = 0 + +; Default size of the mysqlnd memory pool, which is used by result sets. +; http://php.net/mysqlnd.mempool_default_size +;mysqlnd.mempool_default_size = 16000 + ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes. ; http://php.net/mysqlnd.net_cmd_buffer_size ;mysqlnd.net_cmd_buffer_size = 2048 @@ -1204,6 +1217,15 @@ mysqlnd.collect_memory_statistics = Off ; http://php.net/mysqlnd.net_read_buffer_size ;mysqlnd.net_read_buffer_size = 32768 +; Timeout for network requests in seconds. +; http://php.net/mysqlnd.net_read_timeout +;mysqlnd.net_read_timeout = 31536000 + +; SHA-256 Authentication Plugin related. File with the MySQL server public RSA +; key. +; http://php.net/mysqlnd.sha256_server_public_key +;mysqlnd.sha256_server_public_key = + [OCI8] ; Connection: Enables privileged connections using external @@ -1447,7 +1469,7 @@ session.use_trans_sid = 0 ; Set session ID character length. This value could be between 22 to 256. ; Shorter length than default is supported only for compatibility reason. ; Users should use 32 or more chars. -; http://php.net/session.sid_length +; http://php.net/session.sid-length ; Default Value: 32 ; Development Value: 26 ; Production Value: 26 @@ -1861,6 +1883,12 @@ ldap.max_links = -1 ; This should improve performance, but requires appropriate OS configuration. ;opcache.huge_code_pages=1 +; Validate cached file permissions. +;opcache.validate_permission=0 + +; Prevent name collisions in chroot'ed environment. +;opcache.validate_root=0 + [curl] ; A default value for the CURLOPT_CAINFO option. This is required to be an ; absolute path. |