prosody.cfg.lua.dist

changeset 1295
ead6d78d2217
parent 1291
22dcd5f06bc4
child 1446
109ca9e7a6f3
equal deleted inserted replaced
1294:39197fe5ae94 1295:ead6d78d2217
52 "legacyauth"; -- Legacy authentication. Only used by some old clients and bots. 52 "legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
53 "version"; -- Replies to server version requests 53 "version"; -- Replies to server version requests
54 "uptime"; -- Report how long server has been running 54 "uptime"; -- Report how long server has been running
55 "time"; -- Let others know the time here on this server 55 "time"; -- Let others know the time here on this server
56 "ping"; -- Replies to XMPP pings with pongs 56 "ping"; -- Replies to XMPP pings with pongs
57 "register"; -- Allow users to register on this server using a client and change passwords
57 58
58 -- Other specific functionality 59 -- Other specific functionality
59 --"register"; -- Allow users to register on this server using a client
60 --"posix"; -- POSIX functionality, sends server to background, enables syslog, etc. 60 --"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
61 --"console"; -- telnet to port 5582 (needs console_enabled = true) 61 --"console"; -- telnet to port 5582 (needs console_enabled = true)
62 --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP" 62 --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
63 --"httpserver"; -- Serve static files from a directory over HTTP 63 --"httpserver"; -- Serve static files from a directory over HTTP
64 }; 64 };
65
66 -- Disable account creation by default, for security
67 -- For more information see http://prosody.im/doc/creating_accounts
68 allow_registration = false;
65 69
66 -- These are the SSL/TLS-related settings. If you don't want 70 -- These are the SSL/TLS-related settings. If you don't want
67 -- to use SSL/TLS, you may comment or remove this 71 -- to use SSL/TLS, you may comment or remove this
68 ssl = { 72 ssl = {
69 key = "certs/localhost.key"; 73 key = "certs/localhost.key";

mercurial