aboutsummaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-26 17:20:57 -0800
committerfriendica <info@friendica.com>2012-12-26 17:20:57 -0800
commit7a6972efb52d5c293aae703af30378083c593b3e (patch)
treeb870b4e6df701bff52bf81d9b78cab197f425880 /install
parent83a11676821884accff9845a7d93eb97badf7b78 (diff)
downloadvolse-hubzilla-7a6972efb52d5c293aae703af30378083c593b3e.tar.gz
volse-hubzilla-7a6972efb52d5c293aae703af30378083c593b3e.tar.bz2
volse-hubzilla-7a6972efb52d5c293aae703af30378083c593b3e.zip
provide a default directory configuration (client)
Diffstat (limited to 'install')
-rw-r--r--install/htconfig.sample.php16
1 files changed, 10 insertions, 6 deletions
diff --git a/install/htconfig.sample.php b/install/htconfig.sample.php
index 47dcb7e12..ebfc84543 100644
--- a/install/htconfig.sample.php
+++ b/install/htconfig.sample.php
@@ -52,11 +52,15 @@ $a->config['system']['maximagesize'] = 800000;
$a->config['php_path'] = 'php';
-// You shouldn't need to change anything else.
-// Location of global directory submission page.
-$a->config['system']['directory_submit_url'] = 'http://dir.friendica.com/submit';
-$a->config['system']['directory_search_url'] = 'http://dir.friendica.com/directory?search=';
+// Configure how we communicate with directory servers.
+// DIRECTORY_MODE_NORMAL = directory client, we will find a directory
+// DIRECTORY_MODE_SECONDARY = caching directory or mirror
+// DIRECTORY_MODE_PRIMARY = main directory server
+// DIRECTORY_MODE_STANDALONE = "off the grid" or private directory services
+
+$a->config['system']['directory_mode'] = DIRECTORY_MODE_NORMAL;
+
// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts
@@ -64,11 +68,11 @@ $a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com';
// allowed themes (change this from admin panel after installation)
-$a->config['system']['allowed_themes'] = 'duepuntozero';
+$a->config['system']['allowed_themes'] = 'redbasic';
// default system theme
-$a->config['system']['theme'] = 'duepuntozero';
+$a->config['system']['theme'] = 'redbasic';