mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
RINO encryption now enabled by default on new installs
This commit is contained in:
parent
8eea856131
commit
1ee1df3747
2 changed files with 13 additions and 0 deletions
|
@ -57,3 +57,10 @@ $a->config['system']['directory_submit_url'] = 'http://dir.friendika.com/submit'
|
||||||
|
|
||||||
$a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com';
|
$a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com';
|
||||||
|
|
||||||
|
// Server-to-server private message encryption (RINO) is allowed by default.
|
||||||
|
// Encryption will only be provided if this setting is true and the
|
||||||
|
// PHP mcrypt extension is installed on both systems
|
||||||
|
|
||||||
|
$a->config['system']['rino_encrypt'] = true;
|
||||||
|
|
||||||
|
|
|
@ -55,3 +55,9 @@ $a->config['system']['directory_submit_url'] = 'http://dir.friendika.com/submit'
|
||||||
|
|
||||||
$a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com';
|
$a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com';
|
||||||
|
|
||||||
|
// Server-to-server private message encryption (RINO) is allowed by default.
|
||||||
|
// Encryption will only be provided if this setting is true and the
|
||||||
|
// PHP mcrypt extension is installed on both systems
|
||||||
|
|
||||||
|
$a->config['system']['rino_encrypt'] = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue