Skip to content
Snippets Groups Projects
Commit 7f8a3cd7 authored by Jens Sandmann's avatar Jens Sandmann
Browse files

prosody: expizite mod_posix config. nur noch config reinmounten nicht mehr ganz etc

parent 60a64e48
No related branches found
No related tags found
1 merge request!8Jabber umzug
This commit is part of merge request !8. Comments created here will be created in the context of that merge request.
...@@ -11,7 +11,7 @@ services: ...@@ -11,7 +11,7 @@ services:
- 5222:5222 - 5222:5222
- 5269:5269 - 5269:5269
volumes: volumes:
- /srv/jabber_test/etc:/etc/prosody - /srv/jabber_test/etc/prosody.cfg.lua:/etc/prosody/prosody.cfg.lua
- /srv/jabber_test/logs:/var/log/prosody - /srv/jabber_test/logs:/var/log/prosody
- /srv/jabber_test/data:/var/lib/prosody - /srv/jabber_test/data:/var/lib/prosody
# mount the certificates created by lets encrypt # mount the certificates created by lets encrypt
......
...@@ -149,7 +149,7 @@ log = { ...@@ -149,7 +149,7 @@ log = {
info = "prosody.log"; -- Change 'info' to 'debug' for verbose logging info = "prosody.log"; -- Change 'info' to 'debug' for verbose logging
error = "prosody.err"; error = "prosody.err";
-- "*syslog"; -- Uncomment this for logging to syslog -- "*syslog"; -- Uncomment this for logging to syslog
-- "*console"; -- Log to the console, useful for debugging with daemonize=false "*console"; -- Log to the console, useful for debugging with daemonize=false
} }
-- Uncomment to enable statistics -- Uncomment to enable statistics
...@@ -180,15 +180,20 @@ VirtualHost "jabber-test.warpzone.ms" ...@@ -180,15 +180,20 @@ VirtualHost "jabber-test.warpzone.ms"
-- like multi-user conferences, and transports. -- like multi-user conferences, and transports.
-- For more information on components, see https://prosody.im/doc/components -- For more information on components, see https://prosody.im/doc/components
---Set up a MUC (multi-user chat) room server on conference.example.com: --- Set up a MUC (multi-user chat) room server on conference.example.com:
Component "muc.jabber-test.warpzone.ms" "muc" Component "muc.jabber-test.warpzone.ms" "muc"
---configure the proxy65 component which allows file transfers --- Configure the proxy65 component which allows file transfers
Component "proxy.jabber-test.warpzone.ms" "proxy65" Component "proxy.jabber-test.warpzone.ms" "proxy65"
----Configure where the groups are stated --- Configure where the groups are stated
groups_file = "/etc/prosody/groups.txt" groups_file = "/etc/prosody/groups.txt"
--- Configure the posix module so it works with docker
run_as_root = true -- Are you crazy? Prosody doesn't need root access!
daemonize = false
pidfile = "/tmp/prosody.pid"
---Set up an external component (default component port is 5347) ---Set up an external component (default component port is 5347)
-- --
-- External components allow adding various services, such as gateways/ -- External components allow adding various services, such as gateways/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment