X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Fhtconfig.vagrant.php;h=9c96687e71af4b53418c878ef3b5293b42676de4;hb=ea1a434dc1368379d8b49dd9857823182213ab98;hp=c33f9941ef06ee7a6a53f86dccd19d0054625ce2;hpb=1c107b2e1f0360a3031779123951a9c2425f823d;p=friendica.git diff --git a/util/htconfig.vagrant.php b/util/htconfig.vagrant.php index c33f9941ef..9c96687e71 100644 --- a/util/htconfig.vagrant.php +++ b/util/htconfig.vagrant.php @@ -4,8 +4,8 @@ // Copy or rename this file to .htconfig.php $db_host = 'localhost'; -$db_user = 'root'; -$db_pass = 'root'; +$db_user = 'friendica'; +$db_pass = 'friendica'; $db_data = 'friendica'; // If you are using a subdirectory of your domain you will need to put the @@ -33,7 +33,7 @@ $a->config['sitename'] = "My Friend Network"; $a->config['register_policy'] = REGISTER_OPEN; $a->config['register_text'] = ''; -$a->config['admin_email'] = 'vagrant@friendica.dev'; +$a->config['admin_email'] = 'admin@friendica.local'; // Maximum size of an imported message, 0 is unlimited @@ -47,15 +47,11 @@ $a->config['system']['maximagesize'] = 800000; $a->config['php_path'] = '/usr/bin/php'; -// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts - -$a->config['system']['huburl'] = '[internal]'; // 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 +// set to 0 to disable, 1 to enable -$a->config['system']['rino_encrypt'] = true; +$a->config['system']['rino_encrypt'] = 1; // default system theme @@ -76,3 +72,5 @@ $a->config['system']['debugging'] = true; $a->config['system']['logfile'] = 'logfile.out'; $a->config['system']['loglevel'] = LOGGER_DEBUG; +// display php errors +ini_set('display_errors', '1');