Commit 095f6b23 authored by Per Buer's avatar Per Buer
parents 9b3a999b 5f8041ac
......@@ -33,6 +33,7 @@ Makefile.in
/missing
/stamp-h1
/varnishapi.pc
TAGS
# Default vcl made from bin/varnishd/default.vcl
/bin/varnishd/default_vcl.h
......
......@@ -421,6 +421,9 @@ main(int argc, char * const *argv)
MCF_ParamSet(cli, "thread_pool_workspace", "16384");
cli_check(cli);
MCF_ParamSet(cli, "http_resp_size", "8192");
cli_check(cli);
MCF_ParamSet(cli, "thread_pool_stack", "32bit");
cli_check(cli);
......
......@@ -154,7 +154,7 @@ matches certain criteria:::
sub vcl_fetch {
if (req.url ~ "\.(png|gif|jpg)$") {
unset beresp.http.set-cookie;
set beresp.ttl = 3600;
set beresp.ttl = 1h;
}
}
......
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