Created
March 8, 2014 08:41
-
-
Save sandys/9427449 to your computer and use it in GitHub Desktop.
Varnish file for chefatlarge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DAEMON_OPTS="-a :80 \ | |
-T localhost:6082 \ | |
-f /etc/varnish/default.vcl \ | |
-S /etc/varnish/secret \ | |
-s file,/www/varnish/$INSTANCE/varnish_storage.bin,1G" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
backend default { | |
.host = "127.0.0.1"; | |
.port = "8071"; | |
.first_byte_timeout = 300s; /* varnish v2.0.3 or later only */ | |
.probe = { | |
.url = "/"; | |
.timeout = 10s; | |
.interval = 20s; | |
.window = 10; | |
.threshold = 7; | |
} | |
} | |
/* Only permit cluster to purge files from cache */ | |
acl purge { | |
"127.0.0.1"; | |
"10.0.1.100"; | |
"10.0.1.101"; | |
"10.0.1.102"; | |
"10.0.1.103"; | |
"10.0.1.104"; | |
} | |
sub vcl_recv { | |
/* Before anything else we need to fix gzip compression */ | |
if (req.http.Accept-Encoding) { | |
if (req.url ~ "\.(jpg|png|gif|gz|tgz|bz2|tbz|mp3|ogg)$") { | |
# No point in compressing these | |
remove req.http.Accept-Encoding; | |
} else if (req.http.Accept-Encoding ~ "gzip") { | |
set req.http.Accept-Encoding = "gzip"; | |
} else if (req.http.Accept-Encoding ~ "deflate") { | |
set req.http.Accept-Encoding = "deflate"; | |
} else { | |
# unknown algorithm | |
remove req.http.Accept-Encoding; | |
} | |
} | |
if (req.request == "PURGE") { | |
if (!client.ip ~ purge) { | |
error 405 "Not allowed."; | |
} | |
return (lookup); | |
} | |
set req.backend = default; | |
if (req.http.X-Forwarded-Proto == "https" ) { | |
set req.http.X-Forwarded-Port = "443"; | |
} else { | |
set req.http.X-Forwarded-Port = "8071"; | |
} | |
if (req.http.host ~ "^(www\.|ipv6\.|usa1\.|europe1\.)?([-0-9a-zA-Z]+)\.([a-zA-Z]+)$") { | |
set req.http.host = regsub(req.http.host, "^(www\.|ipv6\.|usa1\.|europe1\.)?([-0-9a-zA-Z]+)\.([a-zA-Z]+)$", "\1\2.\3"); | |
/*set req.url = "/VirtualHostBase/" req.http.X-Forwarded-Proto | |
regsub(req.http.host, "^(www\.|ipv6\.|usa1\.|europe1\.)?([-0-9a-zA-Z]+)\.([a-zA-Z]+)$", "/\1\2.\3:") | |
req.http.X-Forwarded-Port | |
regsub(req.http.host, "^(www\.|ipv6\.|usa1\.|europe1\.)?([-0-9a-zA-Z]+)\.([a-zA-Z]+)$", "/\2.\3/\2.\3/VirtualHostRoot") | |
req.url;*/ | |
} | |
if (req.url ~ "(?i)^https?://") { | |
set req.http.Host = regsub(req.url, "(?i)^https?://([^/]*).*", "\1"); | |
set req.url = regsub(req.url, "(?i)^https?://[^/]*/?(.*)$", "/\1"); | |
} | |
if (req.request != "GET" && req.request != "HEAD") { | |
/* We only deal with GET and HEAD by default */ | |
return (pass); | |
} | |
set req.http.Host = regsub(req.http.Host, ":[0-9]+", ""); | |
if (req.url ~ "\.(gif|jpg|jpeg|swf|css|js|flv|mp3|mp4|pdf|ico|png)(\?.*|)$") { | |
unset req.http.cookie; | |
set req.url = regsub(req.url, "\?.*$", ""); | |
} | |
if (req.url ~ "\?(utm_(campaign|medium|source|term)|adParams|client|cx|eid|fbid|feed|ref(id|src)?|v(er|iew))=") { | |
set req.url = regsub(req.url, "\?.*$", ""); | |
} | |
if (req.url ~ "wp-(login|admin)" || req.url ~ "preview=true" || req.url ~ "xmlrpc.php") { | |
return (pass); | |
} | |
if (req.http.cookie) { | |
if (req.http.cookie ~ "(wordpress_|wp-settings-)") { | |
return(pass); | |
} else { | |
unset req.http.cookie; | |
} | |
} | |
# Remove the wp-settings-1 cookie | |
set req.http.Cookie = regsuball(req.http.Cookie, "wp-settings-1=[^;]+(; )?", ""); | |
# Remove the wp-settings-time-1 cookie | |
set req.http.Cookie = regsuball(req.http.Cookie, "wp-settings-time-1=[^;]+(; )?", ""); | |
# Remove the wp test cookie | |
set req.http.Cookie = regsuball(req.http.Cookie, "wordpress_test_cookie=[^;]+(; )?", ""); | |
# Static content unique to the theme can be cached (so no user uploaded images) | |
# The reason I don't take the wp-content/uploads is because of cache size on bigger blogs | |
# that would fill up with all those files getting pushed into cache | |
if (req.url ~ "/blog/wp-content/themes/" && req.url ~ "\.(css|js|png|gif|jp(e)?g)") { | |
unset req.http.cookie; | |
} | |
# Even if no cookies are present, I don't want my "uploads" to be cached due to their potential size | |
if (req.url ~ "/wp-content/uploads/") { | |
return (pass); | |
} | |
# Check the cookies for wordpress-specific items | |
if (req.http.Cookie ~ "wordpress_" || req.http.Cookie ~ "comment_") { | |
# A wordpress specific cookie has been set | |
return (pass); | |
} | |
# normalize Aceept-Encoding header | |
# http://varnish.projects.linpro.no/wiki/FAQ/Compression | |
if (req.http.Accept-Encoding) { | |
if (req.url ~ "\.(jpg|png|gif|gz|tgz|bz2|tbz|mp3|ogg|swf|flv)$") { | |
# No point in compressing these | |
remove req.http.Accept-Encoding; | |
} elsif (req.http.Accept-Encoding ~ "gzip") { | |
set req.http.Accept-Encoding = "gzip"; | |
} elsif (req.http.Accept-Encoding ~ "deflate" && req.http.user-agent !~ "MSIE") { | |
set req.http.Accept-Encoding = "deflate"; | |
} else { | |
# unkown algorithm | |
remove req.http.Accept-Encoding; | |
} | |
} | |
# CloudFlare | |
remove req.http.X-Forwarded-For; | |
if (req.http.CF-Connecting-IP) { | |
set req.http.X-Forwarded-For = req.http.CF-Connecting-IP; | |
} else { | |
set req.http.X-Forwarded-For = client.ip; | |
} | |
# Remove has_js and CloudFlare/Google Analytics __* cookies. | |
set req.http.Cookie = regsuball(req.http.Cookie, "(^|;\s*)(_[_a-z]+|has_js)=[^;]*", ""); | |
# Remove a ";" prefix, if present. | |
set req.http.Cookie = regsub(req.http.Cookie, "^;\s*", ""); | |
/* Keep serving if haproxy goes down (ie; Plone is being serviced). Haproxy | |
will return a 503 error page if Plone goes down for us */ | |
if (req.backend.healthy) { | |
set req.grace = 20s; /* Only enable if you don't mind slightly stale content */ | |
} else { | |
set req.grace = 24h; | |
} | |
return(lookup); | |
} | |
sub vcl_fetch { | |
/*set obj.grace = 24h;*/ /* Keep at longest used in vcl_recv */ | |
if ( (!(req.url ~ "(wp-(login|admin)|login)")) || (req.request == "GET") ) { | |
unset beresp.http.set-cookie; | |
set beresp.ttl = 1h; | |
} | |
if (req.url ~ "\.(gif|jpg|jpeg|swf|css|js|flv|mp3|mp4|pdf|ico|png)(\?.*|)$") { | |
set beresp.ttl = 365d; | |
} | |
} | |
sub vcl_deliver { | |
# multi-server webfarm? set a variable here so you can check | |
# the headers to see which frontend served the request | |
# set resp.http.X-Server = "server-01"; | |
if (obj.hits > 0) { | |
set resp.http.X-Cache = "HIT"; | |
} else { | |
set resp.http.X-Cache = "MISS"; | |
} | |
} | |
sub vcl_hit { | |
if (req.request == "PURGE") { | |
purge; | |
error 200 "OK"; | |
} | |
} | |
sub vcl_miss { | |
if (req.request == "PURGE") { | |
purge; | |
error 404 "Not cached"; | |
} | |
} | |
sub vcl_error { | |
set obj.http.Content-Type = "text/html; charset=utf-8"; | |
synthetic {" | |
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html> | |
<head> | |
<title>"sddfd "</title> | |
</head> | |
<body> | |
<div style="background-color:yellow;"> | |
<h1>This website is unavailable</h1> | |
<p>If you are seeing this page, either maintenance is being performed | |
or something really bad has happened. Try making a cup of tea (or some whacky recipe) and returning in a few minutes.</p> | |
<h2>Error ""</h2> | |
<p>""</p> | |
<h3>Guru Meditation:</h3> | |
<p>XID: ""</p> | |
<address> | |
<a href="http://www.chefatlarge.in/">Chef At Large</a> | |
</address> | |
</div> | |
<div style="position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1;"> | |
<!--img alt="" src="/static/BBCTestCard.jpg" style="width:100%;height:100%" /--> | |
</div> | |
</body> | |
</html> | |
"}; | |
return (deliver); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment