summaryrefslogtreecommitdiff
path: root/php.ini-production
diff options
context:
space:
mode:
authorDaniel Lowrey <rdlowrey@php.net>2014-03-07 05:26:37 -0700
committerDaniel Lowrey <rdlowrey@php.net>2014-03-07 05:26:37 -0700
commitff3c6931c0b3c275127ec8a73ad82fa2f9ff527c (patch)
tree52bbd13f1f2f1573e474ce310d787e2f19f66c02 /php.ini-production
parent8d3f4b647b0942273f477e5b7e1f3d5d26dc4e0d (diff)
downloadphp-git-ff3c6931c0b3c275127ec8a73ad82fa2f9ff527c.tar.gz
Update php.ini files (new openssl directives)
Diffstat (limited to 'php.ini-production')
-rw-r--r--php.ini-production18
1 files changed, 18 insertions, 0 deletions
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: