Mercurial > prosody-modules
view mod_component_client/README.markdown @ 5680:b43c989fb69c
mod_http_oauth2: Implement introspection endpoint
"Tell me about this token"
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 25 May 2023 09:31:21 +0200 |
parents | 35ae59a8196d |
children |
line wrap: on
line source
Introduction ============ This module turns Prosody hosts into components of other XMPP servers. Configuration ============= Example configuration: ``` {.lua} VirtualHost "component.example.com" modules_enabled = { "component_client" } component_client = { host = "localhost"; port = 5347; secret = "hunter2"; } ```