diff options
| author | Carson Fleming <cflems@cflems.net> | 2024-09-20 21:32:33 -0400 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2024-09-20 21:32:33 -0400 |
| commit | 3f80bcbc08ab05013af9e322bbb1a2216ce58dbb (patch) | |
| tree | b2d13dbcaa30b00173b593eafd2bb97af83ef99f /inc/config.sample.php | |
| parent | 38dc09a3756fc8dcf79af03a94f66aeab973a449 (diff) | |
| download | bulletin-3f80bcbc08ab05013af9e322bbb1a2216ce58dbb.tar.gz | |
mysql over SSL support
Diffstat (limited to 'inc/config.sample.php')
| -rw-r--r-- | inc/config.sample.php | 9 |
1 files changed, 9 insertions, 0 deletions
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 <noreply@bulletinalpha.tk>', |
