]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Meteor/README
Merge branch 'master' into 0.9.x
[quix0rs-gnu-social.git] / plugins / Meteor / README
1 This is a plugin to automatically load notices in the browser no
2 matter who creates them -- the kind of thing we see with
3 search.twitter.com, rejaw.com, or FriendFeed's "real time" news.
4
5 It requires a meteor server.
6
7    http://meteorserver.org/
8
9 Note that the controller interface needs to be accessible by the Web
10 server, and the subscriber interface needs to be accessible by your
11 Web users. You MUST firewall the controller interface from users;
12 otherwise anyone will be able to push any message to your subscribers.
13 Not good!
14
15 You can enable the plugin with this line in config.php:
16
17 addPlugin('Meteor', array('webserver' => 'meteor server address'));
18
19 Available parameters:
20
21 * webserver: Web server address. Defaults to site server.
22 * webport: port to connect to for Web access. Defaults to 4670.
23 * controlserver: Control server address. Defaults to webserver.
24 * controlport: port to connect to for control. Defaults to 4671.
25 * channelbase: a base string to use for channels. Good if you have
26   multiple sites using the same meteor server.
27