mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Set default listening interface to 127.0.0.1
This commit is contained in:
parent
1bfc26ba0a
commit
9eadfb191e
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ local sessions = {};
|
|||
|
||||
local log = module._log;
|
||||
|
||||
local component_listener = { default_port = 5347; default_mode = "*a"; };
|
||||
local component_listener = { default_port = 5347; default_mode = "*a"; default_interface = config.get("*", "core", "component_interface") or "127.0.0.1" };
|
||||
|
||||
local xmlns_component = 'jabber:component:accept';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue