mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_http: Allow configuring http parser size limits
This commit is contained in:
parent
369c2c0550
commit
e9341ec413
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue