diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-10 16:39:50 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-10 16:39:50 +0100 |
commit | f11db43de9a33455e197b9067135672e4f1e8526 (patch) | |
tree | a5dfd0ead4cd713423cea367e152571ca58da30b /prosody.cfg.lua.dist | |
parent | e8bbf87b3dac657c4e4af5ff1459047fa2f1a268 (diff) | |
download | prosody-f11db43de9a33455e197b9067135672e4f1e8526.tar.gz prosody-f11db43de9a33455e197b9067135672e4f1e8526.zip |
prosody.cfg.lua.dist: Move enabled line higher up (people including myself often miss it)
Diffstat (limited to 'prosody.cfg.lua.dist')
-rw-r--r-- | prosody.cfg.lua.dist | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 51ea3b3d..79e32a25 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -88,6 +88,9 @@ Host "localhost" -- Section for example.com
-- (replace example.com with your domain name)
Host "example.com"
+
+ enabled = false -- This will disable the host, preserving the config, but denying connections
+
-- Assign this host a certificate for TLS, otherwise it would use the one
-- set in the global section (if any).
-- Note that old-style SSL on port 5223 only supports one certificate, and will always
@@ -97,7 +100,5 @@ Host "example.com" certificate = "certs/example.com.crt";
}
- enabled = false -- This will disable the host, preserving the config, but denying connections
-
-- Set up a MUC (multi-user chat) room server on conference.example.com:
Component "conference.example.com" "muc"
|