Commit 60366f38 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Simplify

parent dd5d1895
......@@ -435,9 +435,8 @@ init_params(struct cli *cli)
MCF_ParamConf(MCF_DEFAULT, "http_resp_size", "8k");
MCF_ParamConf(MCF_DEFAULT, "http_req_size", "12k");
MCF_ParamConf(MCF_DEFAULT, "gzip_buffer", "4k");
} else {
MCF_ParamConf(MCF_MAXIMUM, "vsl_space", "4G");
MCF_ParamConf(MCF_MAXIMUM, "vsm_space", "4G");
MCF_ParamConf(MCF_MAXIMUM, "vsl_space", "1G");
MCF_ParamConf(MCF_MAXIMUM, "vsm_space", "1G");
}
#if !defined(HAVE_ACCEPT_FILTERS) || defined(__linux)
......
......@@ -1514,7 +1514,7 @@ PARAM(
/* name */ vsl_space,
/* typ */ bytes,
/* min */ "1M",
/* max */ "1G",
/* max */ "4G",
/* default */ "80M",
/* units */ "bytes",
/* flags */ MUST_RESTART,
......@@ -1531,7 +1531,7 @@ PARAM(
/* name */ vsm_space,
/* typ */ bytes,
/* min */ "1M",
/* max */ "1G",
/* max */ "4G",
/* default */ "1M",
/* units */ "bytes",
/* flags */ MUST_RESTART,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment