summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/database
diff options
context:
space:
mode:
authorTim Nolte <noltet@sekisui-spi.com>2015-06-18 21:28:43 +0200
committerTim Nolte <noltet@sekisui-spi.com>2015-06-18 21:28:43 +0200
commitced557b99cec159a3ad36e497819b8da7f70cd1e (patch)
tree6f6366aa494fbade1c84bf6e65c4d073df7b89ae /user_guide_src/source/database
parent8c69150e31052f50c16750e2dcfdc312148f109d (diff)
Removed db_options configuration item for implementation later. Changed 5 new MySQLi SSL configuration options to a single ssl_options config item that is an array that will be read to set the individual SSL options.
Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
Diffstat (limited to 'user_guide_src/source/database')
-rw-r--r--user_guide_src/source/database/configuration.rst35
1 files changed, 5 insertions, 30 deletions
diff --git a/user_guide_src/source/database/configuration.rst b/user_guide_src/source/database/configuration.rst
index 510037dba..6f1726ef6 100644
--- a/user_guide_src/source/database/configuration.rst
+++ b/user_guide_src/source/database/configuration.rst
@@ -30,12 +30,7 @@ prototype::
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
- 'db_options' => array(),
- 'ssl_key' => '',
- 'ssl_cert' => '',
- 'ssl_ca' => '',
- 'ssl_capath' => '',
- 'ssl_cipher' => '',
+ 'ssl_options' => array(),
'failover' => array()
);
@@ -78,12 +73,7 @@ These failovers can be specified by setting the failover for a connection like t
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
- 'db_options' => array(),
- 'ssl_key' => '',
- 'ssl_cert' => '',
- 'ssl_ca' => '',
- 'ssl_capath' => '',
- 'ssl_cipher' => ''
+ 'ssl_options' => array()
),
array(
'hostname' => 'localhost2',
@@ -102,12 +92,7 @@ These failovers can be specified by setting the failover for a connection like t
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
- 'db_options' => array(),
- 'ssl_key' => '',
- 'ssl_cert' => '',
- 'ssl_ca' => '',
- 'ssl_capath' => '',
- 'ssl_cipher' => ''
+ 'ssl_options' => array()
)
);
@@ -138,12 +123,7 @@ example, to set up a "test" environment you would do this::
'compress' => FALSE,
'encrypt' => FALSE,
'stricton' => FALSE,
- 'db_options' => array(),
- 'ssl_key' => '',
- 'ssl_cert' => '',
- 'ssl_ca' => '',
- 'ssl_capath' => '',
- 'ssl_cipher' => '',
+ 'ssl_options' => array(),
'failover' => array()
);
@@ -211,12 +191,7 @@ Explanation of Values:
$db['default']['port'] = 5432;
-**db_options** Used to set various database connections options and values. (MySQLi only)
-**ssl_key** The path name to the key file. (MySQLi only)
-**ssl_cert** The path name to the certificate file. (MySQLi only)
-**ssl_ca** The path name to the certificate authority file. (MySQLi only)
-**ssl_capath** The pathname to a directory that contains trusted SSL CA certificates in PEM format. (MySQLi only)
-**ssl_cipher** A list of allowable ciphers to use for SSL encryption. (MySQLi only)
+**ssl_options** Used to set various SSL connection options and values.
====================== ==================================================================================================
.. note:: Depending on what database platform you are using (MySQL, PostgreSQL,