statusnet
Discussions
Activity
Sign In
Realtime Engines
twitman
January 2010
in
Plugins
Setting up a real time server and keeping alive
Comments
evan
January 2010
People are asking a lot about these. We use the Meteor plugin on StatusNet, but the other ones (Comet, Orbited) should also work.
twitman
January 2010
Meteor is well integrated, but I have zero luck in testing out Orbited
I have installed it and it works. Just impossible for me to get statusnet to talk to it.
Here are my orbited.cfg file
# Example Orbited Configuration file
[global]
reactor=epoll
session.ping_interval = 40
session.ping_timeout = 30
user=orbited
[listen]
http://:8000
stomp://:61316
[access]
* -> localhost:8000
* -> localhost:61613
* -> domain.com:61613
domain.com:8000 -> localhost:61613
[logging]
debug=STDERR,debug.log
info=STDERR,info.log
access=STDERR,info.log
warn=STDERR,error.log
error=STDERR,error.log
enabled.default=info,access,warn,error
And this is how I added the plugin
addPlugin('Orbited', array('webserver' => 'domain.com'));
OnlyBlue
February 2011
Good news!
Sign In
or
Register
to comment.
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
All Categories
2.3K
General
1.5K
Plugins
283
Themes
57
Installation
282
status.net service
117
Hosting
15
StatusNet Desktop
24
Powered by Vanilla
Comments
I have installed it and it works. Just impossible for me to get statusnet to talk to it.
Here are my orbited.cfg file
# Example Orbited Configuration file
[global]
reactor=epoll
session.ping_interval = 40
session.ping_timeout = 30
user=orbited
[listen]
http://:8000
stomp://:61316
[access]
* -> localhost:8000
* -> localhost:61613
* -> domain.com:61613
domain.com:8000 -> localhost:61613
[logging]
debug=STDERR,debug.log
info=STDERR,info.log
access=STDERR,info.log
warn=STDERR,error.log
error=STDERR,error.log
enabled.default=info,access,warn,error
And this is how I added the plugin
addPlugin('Orbited', array('webserver' => 'domain.com'));