diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-01-07 17:41:27 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-01-07 17:41:27 +0000 |
commit | f5f551a91d086ff64bf0f499c6821e11bcaf43f0 (patch) | |
tree | 17cb996f8aa9bff202dd5118fbea3932d6777c76 | |
parent | 96f91c20ad8e8fd71eee480ca56eacea606ada52 (diff) | |
download | prosody-f5f551a91d086ff64bf0f499c6821e11bcaf43f0.tar.gz prosody-f5f551a91d086ff64bf0f499c6821e11bcaf43f0.zip |
Default mod_console to listening on localhost only. May be changed with console_interface=xxx.xxx.xxx.xxx in the config
-rwxr-xr-x | prosody | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -146,7 +146,7 @@ do_ports("legacy_ssl_ports", "xmppclient", {}, "ssl"); if config.get("*", "core", "console_enabled") then if cl.get("console") then - cl.start("console") + cl.start("console", { interface = config.get("*", "core", "console_interface") or "127.0.0.1" }) else log("error", "Console is enabled, but the console module appears not to be loaded"); end |