diff options
author | Federico Marani <federico.marani@ymail.com> | 2009-02-20 18:57:20 +0000 |
---|---|---|
committer | Federico Marani <federico.marani@ymail.com> | 2009-02-20 18:57:20 +0000 |
commit | 2ac684f53df3f76aacb4d1be79d7db64567f1964 (patch) | |
tree | ffb21b530b41590ae6c69346ce535f7e518a277d /config.php.sample | |
parent | 09bab904091316fe669619ec90a26a86fc1927d5 (diff) |
* implemented STOMP support for external message queueing systems
* (ticket-724)
* included PHP STOMP libraries (http://code.google.com/p/stompcli/)
Diffstat (limited to 'config.php.sample')
-rw-r--r-- | config.php.sample | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.php.sample b/config.php.sample index a2c5801f4..cc2e4c3c1 100644 --- a/config.php.sample +++ b/config.php.sample @@ -112,6 +112,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; |