From 66a96e9bf76701aed9718c0b6664da16aeab4f53 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Tue, 23 Jul 2024 12:00:28 +0200 Subject: [PATCH] Update to 2024-07-23 12:00 --- roles/jitsi/templates/prosody.cfg.lua.j2 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/jitsi/templates/prosody.cfg.lua.j2 b/roles/jitsi/templates/prosody.cfg.lua.j2 index 73a3e8e..5ee1523 100644 --- a/roles/jitsi/templates/prosody.cfg.lua.j2 +++ b/roles/jitsi/templates/prosody.cfg.lua.j2 @@ -5,6 +5,13 @@ muc_mapper_domain_base = "{{ jitsi_domain }}"; admins = { "{{ jitsi_jicofo_xmpp_user }}@{{ jitsi_auth_domain }}" }; http_default_host = "{{ jitsi_domain }}"; +-- Enable use of native prosody 0.11 support for epoll over select +network_backend = "epoll"; +-- Set the TCP backlog to 511 since the kernel rounds it up to the next power of 2: 512. +network_settings = { + tcp_backlog = 511; +} + {% if jitsi_turn_secret is defined %} external_service_secret = "{{ jitsi_turn_secret }}"; {% endif %}