diff options
author | Kim Alvefur <zash@zash.se> | 2016-08-18 15:16:02 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-08-18 15:16:02 +0200 |
commit | 34f704bbe74beada74e2be1c1d0e4acc18a86015 (patch) | |
tree | 224750aa24bd1f26b3e06e6f96a735c2118465e7 /plugins | |
parent | 8165818e268f3995d34bdd5f4fcf61ff196446ae (diff) | |
parent | e9341ec4139489a9490099e7d10fa411e8e01d1a (diff) | |
download | prosody-34f704bbe74beada74e2be1c1d0e4acc18a86015.tar.gz prosody-34f704bbe74beada74e2be1c1d0e4acc18a86015.zip |
Merge 0.9->0.10
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index 086887fb..2cde9341 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 |