Comparison

spec/scansion/prosody.cfg.lua @ 10917:1eb83bc6f706

util.human.io: Fix right-alignment
author Kim Alvefur <zash@zash.se>
date Sat, 06 Jun 2020 16:43:28 +0200
parent 10848:7fd8976d47d7
child 10942:008f46a92520
comparison
equal deleted inserted replaced
10916:c7ed8f754033 10917:1eb83bc6f706
11 } 11 }
12 end 12 end
13 13
14 admins = { "admin@localhost" } 14 admins = { "admin@localhost" }
15 15
16 use_libevent = true 16 network_backend = "epoll"
17 network_settings = {
18 }
17 19
18 modules_enabled = { 20 modules_enabled = {
19 -- Generally required 21 -- Generally required
20 "roster"; -- Allow users to have a roster. Recommended ;) 22 "roster"; -- Allow users to have a roster. Recommended ;)
21 "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in. 23 "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
97 --sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" } 99 --sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
98 100
99 101
100 -- Logging configuration 102 -- Logging configuration
101 -- For advanced logging see https://prosody.im/doc/logging 103 -- For advanced logging see https://prosody.im/doc/logging
102 log = "*console" 104 log = {debug = "*console" }
103 105
104 pidfile = "prosody.pid" 106 pidfile = "prosody.pid"
105 107
106 VirtualHost "localhost" 108 VirtualHost "localhost"
107 109