You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/en/reference/configuration.rst
+10-10
Original file line number
Diff line number
Diff line change
@@ -249,7 +249,7 @@ mysqli
249
249
- ``ssl_ca`` (string): The path name to the certificate authority file to use for SSL encryption.
250
250
- ``ssl_capath`` (string): The pathname to a directory that contains trusted SSL CA certificates in PEM format.
251
251
- ``ssl_cipher`` (string): A list of allowable ciphers to use for SSL encryption.
252
-
- ``driverOptions`` Any supported flags for mysqli found on `http://www.php.net/manual/en/mysqli.real-connect.php`
252
+
- ``driverOptions`` Any supported flags for mysqli found on `www.php.net/manual/en/mysqli.real-connect.php <https://www.php.net/manual/en/mysqli.real-connect.php>`_
253
253
254
254
pdo_pgsql / pgsql
255
255
^^^^^^^^^^^^^^^^^
@@ -266,22 +266,22 @@ pdo_pgsql / pgsql
266
266
- ``sslmode`` (string): Determines whether or with what priority
267
267
a SSL TCP/IP connection will be negotiated with the server.
- ``sslrootcert`` (string): specifies the name of a file containing
271
271
SSL certificate authority (CA) certificate(s). If the file exists,
272
272
the server's certificate will be verified to be signed by one of these
273
273
authorities.
274
-
See https://www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLROOTCERT
274
+
See `www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLROOTCERT <https://www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLROOTCERT>`_
275
275
- ``sslcert`` (string): specifies the filename of the client SSL certificate.
276
-
See `https://www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLCERT`
276
+
See `www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLCERT <https://www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLCERT>`_
277
277
- ``sslkey`` (string): specifies the location for the secret key used for the
278
278
client certificate.
279
-
See `https://www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLKEY`
279
+
See `www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLKEY <https://www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLKEY>`_
280
280
- ``sslcrl`` (string): specifies the filename of the SSL certificate
281
281
revocation list (CRL).
282
-
See `https://www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLCRL`
282
+
See `www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLCRL <https://www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNECT-SSLCRL>`_
See `https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-GSSENCMODE`
284
+
See `www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-GSSENCMODE <https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-GSSENCMODE>`_
285
285
- ``application_name`` (string): Name of the application that is
286
286
connecting to database. Optional. It will be displayed at ``pg_stat_activity``.
287
287
@@ -316,7 +316,7 @@ pdo_oci / oci8
316
316
add the INSTANCE_NAME parameter in the connection. It is generally used
317
317
to connect to an Oracle RAC server to select the name of a particular instance.
see https://docs.oracle.com/database/121/NETAG/naming.htm. When using this option,
319
+
see `docs.oracle.com/en/database/oracle/oracle-database/23/netag/configuring-naming-methods.html <https://docs.oracle.com/en/database/oracle/oracle-database/23/netag/configuring-naming-methods.html>`_. When using this option,
320
320
you will still need to provide the ``user`` and ``password`` parameters, but the other
321
321
parameters will no longer be used. Note that when using this parameter, the ``getHost``
322
322
and ``getPort`` methods from ``Doctrine\DBAL\Connection`` will no longer function as expected.
@@ -335,7 +335,7 @@ pdo_sqlsrv / sqlsrv
335
335
- ``host`` (string): Hostname of the database to connect to.
336
336
- ``port`` (integer): Port of the database to connect to.
337
337
- ``dbname`` (string): Name of the database/schema to connect to.
338
-
- ``driverOptions`` (array): Any supported options found on `https://learn.microsoft.com/en-us/sql/connect/php/connection-options`
338
+
- ``driverOptions`` (array): Any supported options found on `learn.microsoft.com/en-us/sql/connect/php/connection-options <https://learn.microsoft.com/en-us/sql/connect/php/connection-options>`_
339
339
340
340
ibm_db2
341
341
^^^^^^^
@@ -347,7 +347,7 @@ ibm_db2
347
347
- ``host`` (string): Hostname of the database to connect to.
348
348
- ``port`` (integer): Port of the database to connect to.
349
349
- ``persistent`` (boolean): Whether to establish a persistent connection.
350
-
- ``driverOptions`` (array): Any supported options found on `https://www.php.net/manual/en/function.db2-connect.php#refsect1-function.db2-connect-parameters`
350
+
- ``driverOptions`` (array): Any supported options found on `www.php.net/manual/en/function.db2-connect.php#refsect1-function.db2-connect-parameters <https://www.php.net/manual/en/function.db2-connect.php#refsect1-function.db2-connect-parameters>`_
0 commit comments