Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
slapos
Commits
79860414
Commit
79860414
authored
Apr 17, 2012
by
Tatuya Kamada
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add 3.0.x version into varnish component.
Make varnish recipe use 3.0.x version varnish.
parent
fc037c53
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
14 deletions
+19
-14
component/varnish/buildout.cfg
component/varnish/buildout.cfg
+6
-1
slapos/recipe/generic_varnish/template/default.vcl.in
slapos/recipe/generic_varnish/template/default.vcl.in
+11
-11
software/erp5/software.cfg
software/erp5/software.cfg
+1
-1
stack/erp5.cfg
stack/erp5.cfg
+1
-1
No files found.
component/varnish/buildout.cfg
View file @
79860414
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
parts =
parts =
varnish
varnish
varnish-2.1
varnish-2.1
varnish-3.0
extends =
extends =
../ncurses/buildout.cfg
../ncurses/buildout.cfg
../pcre/buildout.cfg
../pcre/buildout.cfg
...
@@ -35,3 +35,8 @@ environment =
...
@@ -35,3 +35,8 @@ environment =
PKG_CONFIG_PATH=${pcre:location}/lib/pkgconfig
PKG_CONFIG_PATH=${pcre:location}/lib/pkgconfig
CPPFLAGS=-I${ncurses:location}/include
CPPFLAGS=-I${ncurses:location}/include
LDFLAGS=-L${ncurses:location}/lib -Wl,-rpath=${ncurses:location}/lib
LDFLAGS=-L${ncurses:location}/lib -Wl,-rpath=${ncurses:location}/lib
[varnish-3.0]
<= varnish-2.1
url = http://repo.varnish-cache.org/source/varnish-3.0.2.tar.gz
md5sum = c8eae0aabbe66b6daabdf3a1f58cd47a
slapos/recipe/generic_varnish/template/default.vcl.in
View file @
79860414
...
@@ -36,11 +36,11 @@ sub vcl_recv {
...
@@ -36,11 +36,11 @@ sub vcl_recv {
req.request != "PURGE" &&
req.request != "PURGE" &&
req.request != "DELETE") {
req.request != "DELETE") {
/* Non-RFC2616 or CONNECT which is weird. */
/* Non-RFC2616 or CONNECT which is weird. */
pipe
;
return(pipe)
;
}
}
if (req.request != "GET" && req.request != "HEAD" && req.request != "PURGE") {
if (req.request != "GET" && req.request != "HEAD" && req.request != "PURGE") {
/* We only deal with GET and HEAD by default */
/* We only deal with GET and HEAD by default */
pass
;
return(pass)
;
}
}
remove req.http.Cookie;
remove req.http.Cookie;
remove req.http.Set-Cookie;
remove req.http.Set-Cookie;
...
@@ -67,12 +67,12 @@ sub vcl_recv {
...
@@ -67,12 +67,12 @@ sub vcl_recv {
# unset req.http.x;
# unset req.http.x;
#}
#}
set req.grace = 30d;
set req.grace = 30d;
lookup
;
return(lookup)
;
}
}
sub vcl_hash {
sub vcl_hash {
set req.hash += req.url
;
hash_data(req.url)
;
hash
;
return(hash)
;
}
}
sub vcl_hit {
sub vcl_hit {
...
@@ -90,21 +90,21 @@ sub vcl_hit {
...
@@ -90,21 +90,21 @@ sub vcl_hit {
remove req.http.Accept-Language;
remove req.http.Accept-Language;
remove req.http.Accept-Encoding;
remove req.http.Accept-Encoding;
remove req.http.Cookie;
remove req.http.Cookie;
deliver
;
return(deliver)
;
}
}
sub vcl_miss {
sub vcl_miss {
fetch
;
return(fetch)
;
}
}
sub vcl_fetch {
sub vcl_fetch {
/* Never send request to backend even if client ask refreshed content */
/* Never send request to backend even if client ask refreshed content */
if (
obj.cacheable
) {
if (
beresp.ttl > 0s
) {
/* Setup grace period for 30days for all cacheable contents */
/* Setup grace period for 30days for all cacheable contents */
#set req.grace = 30d;
#set req.grace = 30d;
set
obj
.grace = 30d;
set
beresp
.grace = 30d;
}
}
deliver
;
return(deliver)
;
}
}
...
@@ -120,5 +120,5 @@ sub vcl_deliver {
...
@@ -120,5 +120,5 @@ sub vcl_deliver {
# set resp.http.X-Hash = "No hash";
# set resp.http.X-Hash = "No hash";
#}
#}
deliver
;
return(deliver)
;
}
}
software/erp5/software.cfg
View file @
79860414
...
@@ -222,7 +222,7 @@ extra-context =
...
@@ -222,7 +222,7 @@ extra-context =
key dcron_location dcron:location
key dcron_location dcron:location
key gzip_location gzip:location
key gzip_location gzip:location
key logrotate_location logrotate:location
key logrotate_location logrotate:location
key varnish_location varnish:location
key varnish_location varnish
-3.0
:location
key wget_location wget:location
key wget_location wget:location
[networkcache]
[networkcache]
...
...
stack/erp5.cfg
View file @
79860414
...
@@ -93,7 +93,7 @@ parts =
...
@@ -93,7 +93,7 @@ parts =
graphviz
graphviz
memcached
memcached
haproxy
haproxy
varnish-
2.1
varnish-
3.0
stunnel
stunnel
w3m
w3m
poppler
poppler
...
...
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