mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +01:00
37 lines
1.4 KiB
Diff
37 lines
1.4 KiB
Diff
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist
|
|
index a0fc6c9..23a36ac 100644
|
|
--- a/prosody.cfg.lua.dist
|
|
+++ b/prosody.cfg.lua.dist
|
|
@@ -13,6 +13,9 @@
|
|
-- blanks. Good luck, and happy Jabbering!
|
|
|
|
|
|
+daemonize = true
|
|
+pidfile = "/var/run/prosody/prosody.pid"
|
|
+
|
|
---------- Server-wide settings ----------
|
|
-- Settings in this section apply to the whole server and are the default settings
|
|
-- for any virtual hosts
|
|
@@ -86,7 +89,7 @@ modules_disabled = {
|
|
-- "offline"; -- Store offline messages
|
|
-- "c2s"; -- Handle client connections
|
|
-- "s2s"; -- Handle server-to-server connections
|
|
- -- "posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
|
|
+ "posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
|
|
}
|
|
|
|
-- Disable account creation by default, for security
|
|
@@ -161,9 +164,9 @@ archive_expires_after = "1w" -- Remove archived messages after 1 week
|
|
-- Logging configuration
|
|
-- For advanced logging see https://prosody.im/doc/logging
|
|
log = {
|
|
- info = "prosody.log"; -- Change 'info' to 'debug' for verbose logging
|
|
- error = "prosody.err";
|
|
- -- "*syslog"; -- Uncomment this for logging to syslog
|
|
+ -- info = "prosody.log"; -- Change 'info' to 'debug' for verbose logging
|
|
+ -- error = "prosody.err";
|
|
+ "*syslog"; -- Uncomment this for logging to syslog
|
|
-- "*console"; -- Log to the console, useful for debugging with daemonize=false
|
|
}
|
|
|