Software /
code /
prosody
Diff
prosody.cfg.lua.dist @ 479:67b8d8260443
Add some example certificates and update the config to point to them
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 29 Nov 2008 17:21:04 +0000 |
parent | 465:9ab51c483cf3 |
child | 518:127eb78cbf4a |
child | 522:fc3df507afa2 |
line wrap: on
line diff
--- a/prosody.cfg.lua.dist Sat Nov 29 16:25:14 2008 +0000 +++ b/prosody.cfg.lua.dist Sat Nov 29 17:21:04 2008 +0000 @@ -45,13 +45,18 @@ "private"; -- Private XML storage (for room bookmarks, etc.) "version"; -- Replies to server version requests "dialback"; -- s2s dialback support + "disco"; -- Service discovery + "ping"; -- XMPP Ping + "time"; -- Let others know the time here + "uptime"; -- Uptime reporting + "console"; -- telnet to port 5528 (needs console_enabled = true) }; -- These are the SSL/TLS-related settings. If you don't want -- to use SSL/TLS, you may comment or remove this ssl = { - key = "certs/server.key"; - certificate = "certs/server.crt"; + key = "certs/localhost.key"; + certificate = "certs/localhost.cert"; } -- This allows clients to connect to localhost. No harm in it.