From: Daniel Lowrey Date: Fri, 7 Mar 2014 12:26:37 +0000 (-0700) Subject: Update php.ini files (new openssl directives) X-Git-Tag: php-5.6.0beta1~3^2~125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff3c6931c0b3c275127ec8a73ad82fa2f9ff527c;p=php Update php.ini files (new openssl directives) --- diff --git a/php.ini-development b/php.ini-development index 50fbba1fcf..8d2c6697b1 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1967,6 +1967,24 @@ ldap.max_links = -1 ; absolute path. ;curl.cainfo = +[openssl] +; The location of a Certificate Authority (CA) file on the local filesystem +; to use when verifying the identity of SSL/TLS peers. Most users should +; not specify a value for this directive as PHP will attempt to use the +; OS-managed cert stores in its absence. If specified, this value may still +; be overridden on a per-stream basis via the "cafile" SSL stream context +; option. +;openssl.cafile= + +; If openssl.cafile is not specified or if the CA file is not found, the +; directory pointed to by openssl.capath is searched for a suitable +; certificate. This value must be a correctly hashed certificate directory. +; Most users should not specify a value for this directive as PHP will +; attempt to use the OS-managed cert stores in its absence. If specified, +; this value may still be overridden on a per-stream basis via the "capath" +; SSL stream context option. +;openssl.capath= + ; Local Variables: ; tab-width: 4 ; End: diff --git a/php.ini-production b/php.ini-production index fcd96bfad9..602208abff 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1965,6 +1965,24 @@ ldap.max_links = -1 ; absolute path. ;curl.cainfo = +[openssl] +; The location of a Certificate Authority (CA) file on the local filesystem +; to use when verifying the identity of SSL/TLS peers. Most users should +; not specify a value for this directive as PHP will attempt to use the +; OS-managed cert stores in its absence. If specified, this value may still +; be overridden on a per-stream basis via the "cafile" SSL stream context +; option. +;openssl.cafile= + +; If openssl.cafile is not specified or if the CA file is not found, the +; directory pointed to by openssl.capath is searched for a suitable +; certificate. This value must be a correctly hashed certificate directory. +; Most users should not specify a value for this directive as PHP will +; attempt to use the OS-managed cert stores in its absence. If specified, +; this value may still be overridden on a per-stream basis via the "capath" +; SSL stream context option. +;openssl.capath= + ; Local Variables: ; tab-width: 4 ; End: