diff options
author | Kim Alvefur <zash@zash.se> | 2021-05-24 01:34:01 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-05-24 01:34:01 +0200 |
commit | cd16ea631dde0f85f775bdfededf9a6b9b1d59d8 (patch) | |
tree | 838801a06f31e71b713ff112899779e812c3fbdc | |
parent | d7b7a25e7342a1a7e99eb81e510144291189c7f3 (diff) | |
download | prosody-cd16ea631dde0f85f775bdfededf9a6b9b1d59d8.tar.gz prosody-cd16ea631dde0f85f775bdfededf9a6b9b1d59d8.zip |
prosody.cfg.lua.dist: Replace use_libevent with network_backend
Since there are more than two choices now. Hard to describe this choice
in just one line. Maybe this whole block should go away?
-rw-r--r-- | prosody.cfg.lua.dist | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 1dfaa408..dfd26781 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -23,9 +23,9 @@ -- Example: admins = { "user1@example.com", "user2@example.net" } admins = { } --- Enable use of libevent for better performance under high load --- For more information see: https://prosody.im/doc/libevent ---use_libevent = true +-- Prosody includes several alternative modules for keeping track of network connections. +-- For more information see: https://prosody.im/doc/network_backend +--network_backend = "epoll" -- Prosody will always look in its source directory for modules, but -- this option allows you to specify additional locations where Prosody |