packages/net/prosody/patches/001-conf.patch
swalker 38673a0736 [packages] prosody: update to 0.6.2, add an init script, enable the posix module and logging, use PKG_INSTALL
git-svn-id: svn://svn.openwrt.org/openwrt/packages@21536 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-23 03:00:30 +00:00

38 lines
1.5 KiB
Diff

--- a/prosody.cfg.lua.dist
+++ b/prosody.cfg.lua.dist
@@ -47,7 +47,7 @@ modules_enabled = {
"register"; -- Allow users to register on this server using a client and change passwords
-- Other specific functionality
- --"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
+ "posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
--"console"; -- Opens admin telnet interface on localhost port 5582
--"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
--"httpserver"; -- Serve static files from a directory over HTTP
@@ -65,6 +65,9 @@ modules_disabled = {
-- Disable account creation by default, for security
-- For more information see http://prosody.im/doc/creating_accounts
allow_registration = false;
+
+-- File to write pid in
+pidfile = "/var/run/prosody/prosody.pid";
-- These are the SSL/TLS-related settings. If you don't want
-- to use SSL/TLS, you may comment or remove this
@@ -73,6 +76,15 @@ ssl = {
certificate = "certs/localhost.cert";
}
+-- Errors to syslog
+-- All to /var/log/prosody/
+log = {
+ { levels = { "error" }; to = "syslog"; };
+ { levels = { "error" }; to = "file"; filename = "/var/log/prosody/prosody.err"; };
+ -- Change "info" to "debug" for more verbose logging
+ { levels = { min = "info" }; to = "file"; filename = "/var/log/prosody/prosody.log"; };
+}
+
----------- Virtual hosts -----------
-- You need to add a VirtualHost entry for each domain you wish Prosody to serve.
-- Settings under each VirtualHost entry apply *only* to that host.