Mercurial > prosody-modules
view mod_s2soutinjection/README.md @ 6313:4cc3d3de74a7
mod_s2soutinjection: Update to override resolver for 13.0 compatibility
The diffstat!
This definitely justifies Prosody trunk rev d5f322dd424b
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sun, 03 Aug 2025 14:50:57 +0200 |
| parents | 5955ec5c173e |
| children |
line wrap: on
line source
--- summary: S2S connection override ... # Introduction This module is similar to [mod\_srvinjection] but less of an hack. # Configuration ``` lua -- In the global section modules_enabled = { --- your other modules "s2soutinjection"; } -- targets must be IPs, not hostnames s2s_connect_overrides = { -- This one will use the default port, 5269 ["example.com"] = "1.2.3.4"; -- To set a different port: ["another.example"] = { "127.0.0.1", 9999 }; } ``` # Compatibility Prosody version Status ----------------- --------------- 13.0.x Should work 0.12.4 and later Works 0.12.3 and older Does not work
