diff options
author | Alexander Tereschenko <aleksandr.v.tereschenko@linux.intel.com> | 2013-11-05 00:44:54 +0100 |
---|---|---|
committer | Simon Green <sgreen@redhat.com> | 2013-11-05 00:44:54 +0100 |
commit | 7241e5286deab1bb5166ff7e713ff93f08409af0 (patch) | |
tree | 29774a3f7e50cafff75280e742c3c5e1733185f4 /Bugzilla/Install | |
parent | e79ac7a5a2535edb9955b88b6515523385f8e653 (diff) | |
download | bugzilla-7241e5286deab1bb5166ff7e713ff93f08409af0.tar.gz bugzilla-7241e5286deab1bb5166ff7e713ff93f08409af0.tar.xz |
Bug 906191 - Introduce SSL for Bugzilla DB connections for MySQL
r=simon, a=glob
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Localconfig.pm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Bugzilla/Install/Localconfig.pm b/Bugzilla/Install/Localconfig.pm index 3fa253729..d469e13ab 100644 --- a/Bugzilla/Install/Localconfig.pm +++ b/Bugzilla/Install/Localconfig.pm @@ -80,6 +80,22 @@ use constant LOCALCONFIG_VARS => ( default => 1, }, { + name => 'db_mysql_ssl_ca_file', + default => '', + }, + { + name => 'db_mysql_ssl_ca_path', + default => '', + }, + { + name => 'db_mysql_ssl_client_cert', + default => '', + }, + { + name => 'db_mysql_ssl_client_key', + default => '', + }, + { name => 'index_html', default => 0, }, |