Mercurial > prosody-modules
annotate mod_pubsub_hub/README.markdown @ 4895:2542fd80cd15
mod_turn_external: Fix type of config option (thanks mirux)
There was a separate boolean option to enable TLS before, but it was
merged with the port number option and it seems the typed API interface
got confused.
Backport of trunk rev aa7a8aa64d3f
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 15 Feb 2022 21:51:52 +0100 |
parents | f933e3909795 |
children |
rev | line source |
---|---|
1803 | 1 --- |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
2 summary: PubSubHubbub hub |
1803 | 3 ... |
4 | |
5 Introduction | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
6 ============ |
1803 | 7 |
8 This module implements a | |
2330
f933e3909795
mod_pubsub_hub/README: Update specification link
Kim Alvefur <zash@zash.se>
parents:
1986
diff
changeset
|
9 [PubSubHubbub](http://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.3.html) |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
10 (PuSH) hub, allowing PuSH clients to subscribe to local XMPP |
1803 | 11 [Publish-Subscribe](http://xmpp.org/extensions/xep-0060.html) nodes |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
12 stored by [mod\_pubsub](http://prosody.im/doc/modules/mod_pubsub) and |
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
13 receive real time updates to feeds. |
1803 | 14 |
15 Configuration | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
16 ============= |
1803 | 17 |
18 Component "pubsub.example.com" "pubsub" | |
19 | |
20 modules_enabled = { | |
21 "pubsub_hub"; | |
22 } | |
23 | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
24 The hub is then available on `http://pubsub.example.com:5280/hub`. |
1803 | 25 |
26 Compatibility | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
27 ============= |
1803 | 28 |
29 ------- -------------- | |
30 trunk Works | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
31 0.10 Should work |
1803 | 32 0.9 Works |
33 0.8 Doesn't work | |
34 ------- -------------- | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
35 |
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
36 |