aboutsummaryrefslogtreecommitdiffstats
path: root/net/server_epoll.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-07-06 19:02:19 +0200
committerKim Alvefur <zash@zash.se>2018-07-06 19:02:19 +0200
commit24ff76428fed35700c9e10c127920f201c6c6b13 (patch)
tree6a7f65b47fc2786f15e033ee74a8acdba58873b9 /net/server_epoll.lua
parenta2755285b03c17cabf34fc9eb6316bd6b0836633 (diff)
downloadprosody-24ff76428fed35700c9e10c127920f201c6c6b13.tar.gz
prosody-24ff76428fed35700c9e10c127920f201c6c6b13.zip
net.server: Set default read timeout to 14 minutes (fixes #971)
Diffstat (limited to 'net/server_epoll.lua')
-rw-r--r--net/server_epoll.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server_epoll.lua b/net/server_epoll.lua
index 0881f797..b94ebfa5 100644
--- a/net/server_epoll.lua
+++ b/net/server_epoll.lua
@@ -32,7 +32,7 @@ local _ENV = nil;
-- luacheck: std none
local default_config = { __index = {
- read_timeout = 900;
+ read_timeout = 14 * 60;
write_timeout = 7;
tcp_backlog = 128;
accept_retry_interval = 10;