blob: 68423f413f481bb6c8fb1416ba076d08d105b892 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
--- prosody.cfg.lua.old 2010-06-13 02:23:02.000000000 +0200
+++ prosody.cfg.lua.dist 2010-06-18 10:45:40.165045845 +0200
@@ -16,6 +16,10 @@
-- Settings in this section apply to the whole server and are the default settings
-- for any virtual hosts
+prosody_user = "jabber"
+prosody_group = "jabber"
+pidfile = "/var/run/jabber/prosody.pid"
+
-- This is a (by default, empty) list of accounts that are admins
-- for the server. Note that you must create the accounts separately
-- (see http://prosody.im/doc/creating_accounts for info)
@@ -26,6 +30,14 @@
-- For more information see: http://prosody.im/doc/libevent
--use_libevent = true;
+-- Enable the Cyrus SASL backend for authentication against different backends,
+-- such as PAM, LDAP, SQL and more.
+-- It also allows the use of GSSAPI for single-sign-on services.
+-- For more information see: http://prosody.im/doc/cyrus_sasl
+--sasl_backend = "cyrus"
+-- Optional, defaults to "xmpp"
+--cyrus_service_name = "xmpp"
+
-- This is the list of modules Prosody will load on startup.
-- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.
-- Documentation on modules can be found at: http://prosody.im/doc/modules
@@ -90,7 +102,9 @@
-- Logging configuration
-- For advanced logging see http://prosody.im/doc/logging
-log = "prosody.log";
+log = "/var/log/jabber/prosody.log"
+-- Requires mod_posix to be loaded
+-- log = "*syslog"
debug = false; -- Log debug messages?
----------- Virtual hosts -----------
|