The varnish-vcl tag has no wiki summary.
1
vote
1answer
169 views
Varnish vcl_hash to remove a parameter
I'm using Varnish 2.0.6 and I'm having trouble with finding good documentation to write the vcl_hash function.
I need to remove a few parameters from the URL of my API before caching. In particular a ...
1
vote
0answers
141 views
Varnish MISS cache and Varnish control terminal is not responding at 192.168.56.102 on port 6082 [closed]
I am using varnish on one box (192.168.56.102) and apache on other box (192.168.56.105).
on varnish box - in /etc/varnish/default.vcl
backend default {
.host = "192.168.56.105";
.port = "80";
}
and ...
1
vote
1answer
49 views
how to get request body in varnish
I am currently working on a project based on varnish..
we write vcl and vmod. But the project needs to check the request body.
How can I get the post request body in VCL or vmod with a C function?
1
vote
1answer
151 views
High # of N expired objects. Why? - (inside is my varnishstat and default.vcl)
I have apache2 with Varnich 2 running. My prob is that even though my cache-control is set to 1 year, varnish still have a load of N expired objects 1971. Here's my default.vcl it shows my setting any ...
1
vote
1answer
278 views
Can Varnish be configured to try a second server for some resource if it gets a 404 from the primary server?
This would be a perfect solution for me as I need to serve some generated content to web browsers.
My plan is to generate the content on demand and store it for next time. I don't want the browsers to ...
0
votes
2answers
31 views
inline C & vcl caching
I have the url
...../suggest?callback=jsonp9999999999999&term=something
I would like to strip out callback=jsonp999999999999& from the url, cache the rest (...../suggest?term=something) and ...
0
votes
0answers
10 views
Why isn't Varnish sending 304 unmodified when If-Modified-Since header is sent?
When sending a GET request directly to the backend with If-Modified-Since: Wed, 15 Feb 2012 07:25:00 CET set, Apache correctly returns a 304 with no content.
When I send the same request through ...
0
votes
1answer
48 views
Varnish: Cacheble but not cached
if i run this command
varnishtop -i txurl
that request is "cacheble" but not "cached". I see "Age=0" (age that is keep in varnish), how to edit it?
This is the request for my .php page
GET -Used ...
0
votes
2answers
76 views
Varnish: Guru Meditation [closed]
I'm installing Varnish following Varnish 3.0.2 documentation
/etc/varnish/default.vcl
backend default {
.host = "127.0.0.1";
.port = "80";
.connect_timeout = 600s;
...
0
votes
1answer
42 views
How to set Backend in Varnish Cache for a remote Shared hosting?
I want to use my server (where it's installed Varnished) to cache webpage of a remote web hosting
Default.vcl
backend default {
.host = "shavrea.com";
.port = "80";
}
If a write this, ...
0
votes
1answer
15 views
Varnish / Squid content caching with cookies
I'm an absolute newbie to Varnish & caching in general, so this question might be trivial to some !
I'm building a web app (in rails), and I was looking at some options to cache content on ...
0
votes
0answers
46 views
varnish serve old object during refresh
How can I serve an old object during the fetch of an expired object or max
out connection?
I¹ve configured the grace period in both the vcl_recv as the vcl_fetch.
I even tried to use the saint mode ...
0
votes
1answer
61 views
How to Set Varnish Cache-Control Headers
I am hoping someone can advise on the proper method for getting Varnish to send cache-control headers. Currently, my configuration is sending "Cache-Control: no-cache" to clients.
Thanks in advance ...
0
votes
1answer
20 views
Troubleshoot varnish and dual server configuration
I have Varnish set up and working with 2 server instances.
I've made changes to the default.vcl file and updated my changes as follows on both my servers:
$NOW = fdfdf;
sudo varnishadm -T ...
0
votes
0answers
22 views
Can't configure varnish to work with cookies and drupal module
I'm using cookies so that mobile users can visit my site as desktop users. To do this, I give them a cookie - mob_yes.
Then, in a module, i use a drupal hook to see if the cookie is set.
I can ...
0
votes
2answers
45 views
How to write varnish script to do something very particular
Varnish scripting seems rather robust for the vcl but I can't yet figure out how to make it do what I need. I run various sites from the same code base and I want a unified varnish cache for most of ...
0
votes
0answers
53 views
What does this Varnish error mean?
I added some new functionality in a inline C block. Varnish compile and launches just fine, but when I access the page varnish crashes and I get back a 500.
Here is the error from ...
0
votes
0answers
60 views
Where can I find help for my Varnish default.vcl file?
I am having trouble with inline C block and GeoIP. Not exactly sure where my problem is. To my knowledge everything is installed and running fine. I can use GeoIP C API for country code, but not for ...
0
votes
1answer
104 views
What is the best way to debug a VCL file?
I am writing inline C in my VCL file. More specifically I am using Maxmind's GeoIP database to geocode a visitor's IP. I have everything installed, I have followed all the wiki examples for GeoIP ...
0
votes
3answers
156 views
Good way to choose between backends by Varnish depending on requested file existance
I have the installation with Apache2, nginx and Varnish above them. Varnish receives the request, determines what backend is it for (static goes to nginx, dynamic goes to Apache), fetches the response ...
0
votes
1answer
96 views
Defining lists in VCL (Varnish Configuration Language)
Is there a way to define lists of domains in Varnish VCL language? I suppose something similar for ACLs. I would like to do something like this (using ACLs as an example).
acl website_list {
...
0
votes
1answer
244 views
Varnish Behind Load Balancer Not Caching Content
I am using this line to remove cookies in default.vcl to allow for varnish caching
set req.http.Cookie = regsuball(req.http.Cookie, ...
0
votes
1answer
142 views
Can someone tell me how to fix this Varnish error please?
Here's the error I get:
Message from VCC-compiler:
Unterminated string at
(input Line 39 Pos 19)
if (req.url ~ "^/[^?]+.(jpeg|jpg|png|gif|ico|js|css|txt|gz|
...