diff options
author | friendica <info@friendica.com> | 2014-03-24 17:16:01 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-24 17:16:01 -0700 |
commit | e6ea4a757452f93d49a80bf1f4fa76c88c3659ff (patch) | |
tree | b23092f34f45940d9777ab37823a8a46fe2f3661 /view/en | |
parent | 592f5591d9751b3ed6194ba018ff56897bc4e7e5 (diff) | |
download | volse-hubzilla-e6ea4a757452f93d49a80bf1f4fa76c88c3659ff.tar.gz volse-hubzilla-e6ea4a757452f93d49a80bf1f4fa76c88c3659ff.tar.bz2 volse-hubzilla-e6ea4a757452f93d49a80bf1f4fa76c88c3659ff.zip |
ssl ciphers - be liberal in what we accept, conservative in what we generate
Diffstat (limited to 'view/en')
-rw-r--r-- | view/en/htconfig.tpl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/view/en/htconfig.tpl b/view/en/htconfig.tpl index 840e7a124..8e2d32433 100644 --- a/view/en/htconfig.tpl +++ b/view/en/htconfig.tpl @@ -85,6 +85,13 @@ $a->config['system']['php_path'] = '{{$phpath}}'; $a->config['system']['directory_mode'] = DIRECTORY_MODE_NORMAL; + +// libcurl default ciphers - Redhat and NSS based systems may use a different +// syntax. This indicates the ciphers we will accept when connecting to any +// https site. We want this to be as liberal as possible. + +$a->config['system']['curl_ssl_ciphers'] = 'ALL:!eNULL'; + // default system theme $a->config['system']['theme'] = 'redbasic'; |