summaryrefslogtreecommitdiff
path: root/config.php.sample
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-04-08 22:55:34 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-04-08 22:55:34 +0000
commit03a4a4bebf2197097e672e094535ee067fe25441 (patch)
tree2b73b7cf06cd7a65a327df726cc6d1106bfecaff /config.php.sample
parente5657ca4bbd8a43bf2dd44c2554e807a45224bd7 (diff)
parent4e3e4fcfff53ea3a5ef5c90672f3848596d3acbf (diff)
Merge branch '0.8.x' of git@gitorious.org:laconica/dev into 0.8.x
Diffstat (limited to 'config.php.sample')
-rw-r--r--config.php.sample16
1 files changed, 16 insertions, 0 deletions
diff --git a/config.php.sample b/config.php.sample
index 0a01552fe..fa3528835 100644
--- a/config.php.sample
+++ b/config.php.sample
@@ -128,6 +128,14 @@ $config['sphinx']['port'] = 3312;
#background. See the README for details.
#$config['queue']['enabled'] = true;
+#Queue subsystem
+#subsystems: internal (default) or stomp
+#using stomp requires an external message queue server
+#$config['queue']['subsystem'] = 'stomp';
+#$config['queue']['stomp_server'] = 'tcp://localhost:61613';
+#use different queue_basename for each laconica instance managed by the server
+#$config['queue']['queue_basename'] = 'laconica';
+
#The following customise the behaviour of the various daemons:
#$config['daemon']['piddir'] = '/var/run';
#$config['daemon']['user'] = false;
@@ -188,3 +196,11 @@ $config['sphinx']['port'] = 3312;
#Use a different hostname for SSL-encrypted pages
#$config['site']['sslserver'] = 'secure.example.org';
+
+#If you have a lot of status networks on the same server, you can
+#store the site data in a database and switch as follows
+#Status_network::setupDB('localhost', 'statusnet', 'statuspass', 'statusnet');
+#if (!Status_network::setupSite($_server, $_path)) {
+# print "Error\n";
+# exit(1);
+#}