Software /
code /
prosody
Changeset
7580:588ed6451984
mod_http: Allow configuring http parser size limits
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 18 Aug 2016 14:51:11 +0200 |
parents | 7579:d430573fe9f8 |
children | 7581:01d0d466d7be 7675:decb657bc0a0 |
files | plugins/mod_http.lua |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_http.lua Thu Aug 18 14:50:39 2016 +0200 +++ b/plugins/mod_http.lua Thu Aug 18 14:51:11 2016 +0200 @@ -18,6 +18,9 @@ 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