Software /
code /
prosody
Annotate
prosody.cfg.lua.dist @ 1548:b88b30c9e688
prosody.cfg.lua.dist: Add mod_pep to the default config file
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 14 Jul 2009 17:09:18 +0100 |
parent | 1527:47729fa90a6c |
child | 1810:7c45ae42923a |
rev | line source |
---|---|
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
1 -- Prosody Example Configuration File |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
2 -- |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
3 -- If it wasn't already obvious, -- starts a comment, and all |
911
39133bca5938
prosody.cfg.lua.dist: Remove some factual inaccuracies
Matthew Wild <mwild1@gmail.com>
parents:
525
diff
changeset
|
4 -- text after it on a line is ignored by Prosody. |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
5 -- |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
6 -- The config is split into sections, a global section, and one |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
7 -- for each defined host that we serve. You can add as many host |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
8 -- sections as you like. |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
9 -- |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
10 -- Lists are written { "like", "this", "one" } |
1527
47729fa90a6c
prosody.cfg.lua: Various small changes
Matthew Wild <mwild1@gmail.com>
parents:
1526
diff
changeset
|
11 -- Lists can also be of { 1, 2, 3 } numbers, and other things. |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
12 -- Either commas, or semi-colons; may be used |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
13 -- as seperators. |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
14 -- |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
15 -- A table is a list of values, except each value has a name. An |
1527
47729fa90a6c
prosody.cfg.lua: Various small changes
Matthew Wild <mwild1@gmail.com>
parents:
1526
diff
changeset
|
16 -- example table would be: |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
17 -- |
1176
2be14b7021b2
prosody.cfg.lua.dist: Update example to a better one
Matthew Wild <mwild1@gmail.com>
parents:
1132
diff
changeset
|
18 -- ssl = { key = "keyfile.key", certificate = "certificate.cert" } |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
19 -- |
911
39133bca5938
prosody.cfg.lua.dist: Remove some factual inaccuracies
Matthew Wild <mwild1@gmail.com>
parents:
525
diff
changeset
|
20 -- Whitespace (that is tabs, spaces, line breaks) is mostly insignificant, so |
39133bca5938
prosody.cfg.lua.dist: Remove some factual inaccuracies
Matthew Wild <mwild1@gmail.com>
parents:
525
diff
changeset
|
21 -- can |
1527
47729fa90a6c
prosody.cfg.lua: Various small changes
Matthew Wild <mwild1@gmail.com>
parents:
1526
diff
changeset
|
22 -- be placed anywhere that you deem fitting. |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
23 -- |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
24 -- Tip: You can check that the syntax of this file is correct when you have finished |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
25 -- by running: luac -p prosody.cfg.lua |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
26 -- If there are any errors, it will let you know what and where they are, otherwise it |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
27 -- will keep quiet. |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
28 -- |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
29 -- The only thing left to do is rename this file to remove the .dist ending, and fill in the |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
30 -- blanks. Good luck, and happy Jabbering! |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
31 |
1527
47729fa90a6c
prosody.cfg.lua: Various small changes
Matthew Wild <mwild1@gmail.com>
parents:
1526
diff
changeset
|
32 -- Server-wide settings go in this section |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
33 Host "*" |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
34 |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
35 -- This is the list of modules Prosody will load on startup. |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
36 -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too. |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
37 modules_enabled = { |
912
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
38 -- Generally required |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
39 "roster"; -- Allow users to have a roster. Recommended ;) |
912
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
40 "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in. |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
41 "tls"; -- Add support for secure TLS on c2s/s2s connections |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
42 "dialback"; -- s2s dialback support |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
43 "disco"; -- Service discovery |
912
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
44 |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
45 -- Not essential, but recommended |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
46 "private"; -- Private XML storage (for room bookmarks, etc.) |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
47 "vcard"; -- Allow users to set vCards |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
48 |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
49 -- Nice to have |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
50 "legacyauth"; -- Legacy authentication. Only used by some old clients and bots. |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
51 "version"; -- Replies to server version requests |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
52 "uptime"; -- Report how long server has been running |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
53 "time"; -- Let others know the time here on this server |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
54 "ping"; -- Replies to XMPP pings with pongs |
1548
b88b30c9e688
prosody.cfg.lua.dist: Add mod_pep to the default config file
Matthew Wild <mwild1@gmail.com>
parents:
1527
diff
changeset
|
55 "pep"; -- Enables users to publish their mood, activity, playing music and more |
1291
22dcd5f06bc4
prosody.cfg.lua.dist: Enable mod_register by default, but with registration disabled, and add a comment about it
Matthew Wild <mwild1@gmail.com>
parents:
1176
diff
changeset
|
56 "register"; -- Allow users to register on this server using a client and change passwords |
912
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
57 |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
58 -- Other specific functionality |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
59 --"posix"; -- POSIX functionality, sends server to background, enables syslog, etc. |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
60 --"console"; -- telnet to port 5582 (needs console_enabled = true) |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
61 --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP" |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
62 --"httpserver"; -- Serve static files from a directory over HTTP |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
63 }; |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
64 |
1525
f30886f684eb
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Matthew Wild <mwild1@gmail.com>
parents:
1446
diff
changeset
|
65 -- These modules are auto-loaded, should you |
f30886f684eb
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Matthew Wild <mwild1@gmail.com>
parents:
1446
diff
changeset
|
66 -- for (for some mad reason) want to disable |
f30886f684eb
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Matthew Wild <mwild1@gmail.com>
parents:
1446
diff
changeset
|
67 -- them then uncomment them below |
f30886f684eb
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Matthew Wild <mwild1@gmail.com>
parents:
1446
diff
changeset
|
68 modules_disabled = { |
f30886f684eb
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Matthew Wild <mwild1@gmail.com>
parents:
1446
diff
changeset
|
69 -- "presence"; |
f30886f684eb
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Matthew Wild <mwild1@gmail.com>
parents:
1446
diff
changeset
|
70 -- "message"; |
f30886f684eb
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Matthew Wild <mwild1@gmail.com>
parents:
1446
diff
changeset
|
71 -- "iq"; |
f30886f684eb
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Matthew Wild <mwild1@gmail.com>
parents:
1446
diff
changeset
|
72 }; |
f30886f684eb
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Matthew Wild <mwild1@gmail.com>
parents:
1446
diff
changeset
|
73 |
1291
22dcd5f06bc4
prosody.cfg.lua.dist: Enable mod_register by default, but with registration disabled, and add a comment about it
Matthew Wild <mwild1@gmail.com>
parents:
1176
diff
changeset
|
74 -- Disable account creation by default, for security |
22dcd5f06bc4
prosody.cfg.lua.dist: Enable mod_register by default, but with registration disabled, and add a comment about it
Matthew Wild <mwild1@gmail.com>
parents:
1176
diff
changeset
|
75 -- For more information see http://prosody.im/doc/creating_accounts |
22dcd5f06bc4
prosody.cfg.lua.dist: Enable mod_register by default, but with registration disabled, and add a comment about it
Matthew Wild <mwild1@gmail.com>
parents:
1176
diff
changeset
|
76 allow_registration = false; |
22dcd5f06bc4
prosody.cfg.lua.dist: Enable mod_register by default, but with registration disabled, and add a comment about it
Matthew Wild <mwild1@gmail.com>
parents:
1176
diff
changeset
|
77 |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
78 -- These are the SSL/TLS-related settings. If you don't want |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
79 -- to use SSL/TLS, you may comment or remove this |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
80 ssl = { |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
81 key = "certs/localhost.key"; |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
82 certificate = "certs/localhost.cert"; |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
83 } |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
84 |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
85 -- This allows clients to connect to localhost. No harm in it. |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
86 Host "localhost" |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
87 |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
88 -- Section for example.com |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
89 -- (replace example.com with your domain name) |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
90 Host "example.com" |
1526
5f11a8d07161
prosody.cfg.lua.dist: Move enabled line higher up (people including myself often miss it)
Matthew Wild <mwild1@gmail.com>
parents:
1525
diff
changeset
|
91 |
5f11a8d07161
prosody.cfg.lua.dist: Move enabled line higher up (people including myself often miss it)
Matthew Wild <mwild1@gmail.com>
parents:
1525
diff
changeset
|
92 enabled = false -- This will disable the host, preserving the config, but denying connections |
5f11a8d07161
prosody.cfg.lua.dist: Move enabled line higher up (people including myself often miss it)
Matthew Wild <mwild1@gmail.com>
parents:
1525
diff
changeset
|
93 |
522
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
94 -- Assign this host a certificate for TLS, otherwise it would use the one |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
95 -- set in the global section (if any). |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
96 -- Note that old-style SSL on port 5223 only supports one certificate, and will always |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
97 -- use the global one. |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
98 ssl = { |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
99 key = "certs/example.com.key"; |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
100 certificate = "certs/example.com.crt"; |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
101 } |
fc3df507afa2
Converted prosody.cfg.lua.dist to use windows end-of-lines
Waqas Hussain <waqas20@gmail.com>
parents:
479
diff
changeset
|
102 |
912
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
103 -- Set up a MUC (multi-user chat) room server on conference.example.com: |
62dd71870ee3
Update example config, categorise modules, add new modules
Matthew Wild <mwild1@gmail.com>
parents:
911
diff
changeset
|
104 Component "conference.example.com" "muc" |