1
0
mirror of https://github.com/php/doc-es.git synced 2026-03-23 23:12:09 +01:00
Files
Marcos Porto Mariño 8cefc93839 Various updates, up to EN 480cc8a (#340)
* Fix incorrect indentation of CDATA tags

Follow-up to GH-4963

* Remove paragraph indicating ext/json was a PECL extension in PHP 5

As we don't document PHP 5 any more

* Following up GH-5052 for markup nits

Partial revert of 4dbc737
No a para tag is actually needed here because programlisting is a block element

* Deprecated non-canonical cast names

* Document openssl.libctx INI

* profileimage.xml Add tags and a description of the parameters
2026-01-10 19:58:30 +01:00

122 lines
3.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 244c788631898cbbbeae7b291df2ca57fb935b6a Maintainer: PhilDaiguille Status: ready -->
<!-- Reviewed: no Maintainer: Marqitos -->
<section xml:id="openssl.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>openssl &ConfigureOptions;</title>
<tgroup cols="4">
<thead>
<row>
<entry>&Name;</entry>
<entry>&Default;</entry>
<entry>&Changeable;</entry>
<entry>&Changelog;</entry>
</row>
</thead>
<tbody>
<row>
<entry>openssl.cafile</entry>
<entry>""</entry>
<entry><constant>INI_PERDIR</constant></entry>
<entry></entry>
</row>
<row>
<entry>openssl.capath</entry>
<entry>""</entry>
<entry><constant>INI_PERDIR</constant></entry>
<entry></entry>
</row>
<row>
<entry>openssl.libctx</entry>
<entry>"custom"</entry>
<entry><constant>INI_PERDIR</constant></entry>
<entry></entry>
</row>
</tbody>
</tgroup>
</table>
&ini.php.constants;
</para>
&ini.descriptions.title;
<para>
<variablelist>
<varlistentry xml:id="ini.openssl.cafile">
<term>
<parameter>openssl.cafile</parameter>
<type>string</type>
</term>
<listitem>
<para>
Ubicación del archivo Certificate Authority en el sistema de archivos local
que debería ser utilizado con la opción de contexto verify_peer para autenticar
la identidad del par remoto.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.openssl.capath">
<term>
<parameter>openssl.capath</parameter>
<type>string</type>
</term>
<listitem>
<para>
Si cafile no está especificado o si el certificado no es encontrado allí, el
directorio apuntado por capath es examinado para encontrar un certificado adecuado.
capath debe ser un directorio de certificados correctamente hasheado.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.openssl.libctx">
<term>
<parameter>openssl.libctx</parameter>
<type>string</type>
</term>
<listitem>
<simpara>
Especifica el tipo de contexto de biblioteca OpenSSL que se utilizará.
El valor predeterminado, <literal>custom</literal>, crea un contexto de
biblioteca independiente para cada worker o subproceso.
Esto mejora el aislamiento de otras bibliotecas que utilizan OpenSSL y,
en compilaciones ZTS, aumenta la separación entre subprocesos.
También es posible usar el valor <literal>default</literal>, que
hace que PHP utilice el contexto de biblioteca predeterminado global de OpenSSL.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</para>
<para>
Ver también las opciones del <link linkend="context.ssl">contexto de flujo SSL</link>.
</para>
</section>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->