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 /template/en | |
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 'template/en')
-rw-r--r-- | template/en/default/setup/strings.txt.pl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/template/en/default/setup/strings.txt.pl b/template/en/default/setup/strings.txt.pl index 63eb3a3fd..0d5724461 100644 --- a/template/en/default/setup/strings.txt.pl +++ b/template/en/default/setup/strings.txt.pl @@ -196,6 +196,22 @@ blank, then MySQL's compiled-in default will be used. You probably want that. END localconfig_db_user => "Who we connect to the database as.", + localconfig_db_mysql_ssl_ca_file => <<'END', +Path to a PEM file with a list of trusted SSL CA certificates. +The file must be readable by web server user. +END + localconfig_db_mysql_ssl_ca_path => <<'END', +Path to a directory containing trusted SSL CA certificates in PEM format. +Directory and files inside must be readable by the web server user. +END + localconfig_db_mysql_ssl_client_cert => <<'END', +Full path to the client SSL certificate in PEM format we will present to the DB server. +The file must be readable by web server user. +END + localconfig_db_mysql_ssl_client_key => <<'END', +Full path to the private key corresponding to the client SSL certificate. +The file must not be password-protected and must be readable by web server user. +END localconfig_diffpath => <<'END', For the "Difference Between Two Patches" feature to work, we need to know what directory the "diff" bin is in. (You only need to set this if you |