X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=util%2Fhtconfig.vagrant.php;h=623b587ef014e84ef0fb341659b83a1bcbf31c48;hb=13557985844b669f2dbae1294b39044928a1078f;hp=a889adac6cf737fbac16d7fcd7cdfb8f282e453b;hpb=5c535441188f78d902d810b72b91d32322b63cf0;p=friendica.git diff --git a/util/htconfig.vagrant.php b/util/htconfig.vagrant.php index a889adac6c..623b587ef0 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 @@ -49,10 +49,9 @@ $a->config['php_path'] = '/usr/bin/php'; // 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 @@ -66,10 +65,12 @@ $a->config['system']['no_regfullname'] = true; //$a->config['system']['block_local_dir'] = false; // Location of the global directory -$a->config['system']['directory'] = 'http://dir.friendica.social'; +$a->config['system']['directory'] = 'https://dir.friendica.social'; // turn on friendica's log $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');