aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_http.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-08-18 14:51:11 +0200
committerKim Alvefur <zash@zash.se>2016-08-18 14:51:11 +0200
commite9341ec4139489a9490099e7d10fa411e8e01d1a (patch)
treed3c11d6a4f0bd1b1bf110a598d9338c67d24cc92 /plugins/mod_http.lua
parent369c2c05506cac2e96e972ea540c91da2bc05982 (diff)
downloadprosody-e9341ec4139489a9490099e7d10fa411e8e01d1a.tar.gz
prosody-e9341ec4139489a9490099e7d10fa411e8e01d1a.zip
mod_http: Allow configuring http parser size limits
Diffstat (limited to 'plugins/mod_http.lua')
-rw-r--r--plugins/mod_http.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua
index 9b574bc8..03b23480 100644
--- a/plugins/mod_http.lua
+++ b/plugins/mod_http.lua
@@ -18,6 +18,9 @@ local server = require "net.http.server";
server.set_default_host(module:get_option_string("http_default_host"));
+server.set_option("body_size_limit", module:get_option_number("http_max_content_size"));
+server.set_option("buffer_size_limit", module:get_option_number("http_max_buffer_size"));
+
local function normalize_path(path)
if path:sub(-1,-1) == "/" then path = path:sub(1, -2); end
if path:sub(1,1) ~= "/" then path = "/"..path; end