Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
095f6b23
Commit
095f6b23
authored
Mar 08, 2011
by
Per Buer
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
ssh://git.varnish-cache.org/git/varnish-cache
parents
9b3a999b
5f8041ac
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
.gitignore
.gitignore
+1
-0
varnishd.c
bin/varnishd/varnishd.c
+3
-0
vcl.rst
doc/sphinx/tutorial/vcl.rst
+1
-1
No files found.
.gitignore
View file @
095f6b23
...
...
@@ -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
...
...
bin/varnishd/varnishd.c
View file @
095f6b23
...
...
@@ -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
);
...
...
doc/sphinx/tutorial/vcl.rst
View file @
095f6b23
...
...
@@ -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
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment