From 3f80bcbc08ab05013af9e322bbb1a2216ce58dbb Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Fri, 20 Sep 2024 21:32:33 -0400 Subject: mysql over SSL support --- inc/config.sample.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'inc/config.sample.php') diff --git a/inc/config.sample.php b/inc/config.sample.php index 5c14806..27a1261 100644 --- a/inc/config.sample.php +++ b/inc/config.sample.php @@ -17,6 +17,15 @@ $b_config = array( 'db_name' => '', 'db_user' => '', 'db_pass' => '', + // One of these two is necessary for SSL + 'db_ssl_ca' => null, + // 'db_ssl_ca_dir' => '/etc/ssl/certs', + // These are necessary for SSL + 'db_ssl_cert' => null, + 'db_ssl_key' => null, + // These are optional for SSL + 'db_ssl_verify_server' => true, + 'db_ssl_cipher_algos' => null, // Send emails from this address 'mail_from' => 'Bulletin ', -- cgit v1.2.3