~ubuntu-branches/ubuntu/trusty/varnish/trusty-proposed

0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
4
5
<html xmlns="http://www.w3.org/1999/xhtml">
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
6
  <head>
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
7
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8
    
9
    <title>Varnish Configuration Language - VCL &mdash; Varnish version 3.0.3 documentation</title>
10
    
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
11
    <link rel="stylesheet" href="../_static/default.css" type="text/css" />
12
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
13
    
14
    <script type="text/javascript">
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
15
      var DOCUMENTATION_OPTIONS = {
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
16
        URL_ROOT:    '../',
17
        VERSION:     '3.0.3',
18
        COLLAPSE_INDEX: false,
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
19
        FILE_SUFFIX: '.html',
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
20
        HAS_SOURCE:  true
21
      };
22
    </script>
23
    <script type="text/javascript" src="../_static/jquery.js"></script>
24
    <script type="text/javascript" src="../_static/underscore.js"></script>
25
    <script type="text/javascript" src="../_static/doctools.js"></script>
26
    <link rel="top" title="Varnish version 3.0.3 documentation" href="../index.html" />
27
    <link rel="up" title="Using Varnish" href="index.html" />
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
28
    <link rel="next" title="Statistics" href="statistics.html" />
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
29
    <link rel="prev" title="Put Varnish on port 80" href="putting_varnish_on_port_80.html" /> 
30
  </head>
31
  <body>
32
    <div class="related">
33
      <h3>Navigation</h3>
34
      <ul>
35
        <li class="right" style="margin-right: 10px">
36
          <a href="../genindex.html" title="General Index"
37
             accesskey="I">index</a></li>
38
        <li class="right" >
39
          <a href="statistics.html" title="Statistics"
40
             accesskey="N">next</a> |</li>
41
        <li class="right" >
42
          <a href="putting_varnish_on_port_80.html" title="Put Varnish on port 80"
43
             accesskey="P">previous</a> |</li>
44
        <li><a href="../index.html">Varnish version 3.0.3 documentation</a> &raquo;</li>
45
          <li><a href="index.html" accesskey="U">Using Varnish</a> &raquo;</li> 
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
46
      </ul>
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
47
    </div>  
48
49
    <div class="document">
50
      <div class="documentwrapper">
51
        <div class="bodywrapper">
52
          <div class="body">
53
            
54
  <div class="section" id="varnish-configuration-language-vcl">
55
<h1>Varnish Configuration Language - VCL<a class="headerlink" href="#varnish-configuration-language-vcl" title="Permalink to this headline"></a></h1>
56
<p>Varnish has a great configuration system. Most other systems use
57
configuration directives, where you basically turn on and off lots of
58
switches. Varnish uses a domain specific language called Varnish
59
Configuration Language, or VCL for short. Varnish translates this
60
configuration into binary code which is then executed when requests
61
arrive.</p>
62
<p>The VCL files are divided into subroutines. The different subroutines
63
are executed at different times. One is executed when we get the
64
request, another when files are fetched from the backend server.</p>
65
<p>Varnish will execute these subroutines of code at different stages of
66
its work. Because it is code it is execute line by line precedence
67
isn't a problem. At some point you call an action in this subroutine
68
and then the execution of the subroutine stops.</p>
69
<p>If you don't call an action in your subroutine and it reaches the end
70
Varnish will execute some built in VCL code. You will see this VCL
71
code commented out in default.vcl.</p>
72
<p>99% of all the changes you'll need to do will be done in two of these
73
subroutines. <em>vcl_recv</em> and <em>vcl_fetch</em>.</p>
74
<div class="section" id="vcl-recv">
75
<h2>vcl_recv<a class="headerlink" href="#vcl-recv" title="Permalink to this headline"></a></h2>
76
<p>vcl_recv (yes, we're skimpy with characters, it's Unix) is called at
77
the beginning of a request, after the complete request has been
78
received and parsed.  Its purpose is to decide whether or not to serve
79
the request, how to do it, and, if applicable, which backend to use.</p>
80
<p>In vcl_recv you can also alter the request. Typically you can alter
81
the cookies and add and remove request headers.</p>
82
<p>Note that in vcl_recv only the request object, req is available.</p>
83
</div>
84
<div class="section" id="vcl-fetch">
85
<h2>vcl_fetch<a class="headerlink" href="#vcl-fetch" title="Permalink to this headline"></a></h2>
86
<p>vcl_fetch is called <em>after</em> a document has been successfully retrieved
87
from the backend. Normal tasks her are to alter the response headers,
88
trigger ESI processing, try alternate backend servers in case the
89
request failed.</p>
90
<p>In vcl_fetch you still have the request object, req, available. There
91
is also a <em>backend response</em>, beresp. beresp will contain the HTTP
92
headers from the backend.</p>
93
</div>
94
<div class="section" id="actions">
95
<h2>actions<a class="headerlink" href="#actions" title="Permalink to this headline"></a></h2>
96
<p>The most common actions to return are these:</p>
97
<dl class="docutils">
98
<dt><em>pass</em></dt>
99
<dd>When you return pass the request and subsequent response will be passed to
100
and from the backend server. It won't be cached. pass can be returned from
101
vcl_recv</dd>
102
<dt><em>hit_for_pass</em></dt>
103
<dd>Similar to pass, but accessible from vcl_fetch. Unlike pass, hit_for_pass
104
will create a hitforpass object in the cache. This has the side-effect of
105
caching the decision not to cache. This is to allow would-be uncachable
106
requests to be passed to the backend at the same time. The same logic is
107
not necessary in vcl_recv because this happens before any potential
108
queueing for an object takes place.</dd>
109
<dt><em>lookup</em></dt>
110
<dd>When you return lookup from vcl_recv you tell Varnish to deliver content
111
from cache even if the request othervise indicates that the request
112
should be passed. You can't return lookup from vcl_fetch.</dd>
113
<dt><em>pipe</em></dt>
114
<dd>Pipe can be returned from vcl_recv as well. Pipe short circuits the
115
client and the backend connections and Varnish will just sit there
116
and shuffle bytes back and forth. Varnish will not look at the data being
117
send back and forth - so your logs will be incomplete.
118
Beware that with HTTP 1.1 a client can send several requests on the same
119
connection and so you should instruct Varnish to add a &quot;Connection: close&quot;
120
header before actually returning pipe.</dd>
121
<dt><em>deliver</em></dt>
122
<dd>Deliver the cached object to the client.  Usually returned from vcl_fetch.</dd>
123
</dl>
124
</div>
125
<div class="section" id="requests-responses-and-objects">
126
<h2>Requests, responses and objects<a class="headerlink" href="#requests-responses-and-objects" title="Permalink to this headline"></a></h2>
127
<p>In VCL, there are three important data structures. The request, coming
128
from the client, the response coming from the backend server and the
129
object, stored in cache.</p>
130
<p>In VCL you should know the following structures.</p>
131
<dl class="docutils">
132
<dt><em>req</em></dt>
133
<dd>The request object. When Varnish has received the request the req object is
134
created and populated. Most of the work you do in vcl_recv you
135
do on or with the req object.</dd>
136
<dt><em>beresp</em></dt>
137
<dd>The backend respons object. It contains the headers of the object
138
comming from the backend. Most of the work you do in vcl_fetch you
139
do on the beresp object.</dd>
140
<dt><em>obj</em></dt>
141
<dd>The cached object. Mostly a read only object that resides in memory.
142
obj.ttl is writable, the rest is read only.</dd>
143
</dl>
144
</div>
145
<div class="section" id="operators">
146
<h2>Operators<a class="headerlink" href="#operators" title="Permalink to this headline"></a></h2>
147
<p>The following operators are available in VCL. See the examples further
148
down for, uhm, examples.</p>
149
<dl class="docutils">
150
<dt>=</dt>
151
<dd>Assignment operator.</dd>
152
</dl>
153
<dl class="docutils">
154
<dt>==</dt>
155
<dd>Comparison.</dd>
156
</dl>
157
<dl class="docutils">
158
<dt>~</dt>
159
<dd>Match. Can either be used with regular expressions or ACLs.</dd>
160
</dl>
161
<dl class="docutils">
162
<dt>!</dt>
163
<dd>Negation.</dd>
164
</dl>
165
<dl class="docutils">
166
<dt>&amp;&amp;</dt>
167
<dd>Logical <em>and</em></dd>
168
</dl>
169
<dl class="docutils">
170
<dt>||</dt>
171
<dd>Logical <em>or</em></dd>
172
</dl>
173
</div>
174
<div class="section" id="example-1-manipulating-headers">
175
<h2>Example 1 - manipulating headers<a class="headerlink" href="#example-1-manipulating-headers" title="Permalink to this headline"></a></h2>
176
<p>Lets say we want to remove the cookie for all objects in the /images
177
directory of our web server:</p>
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
178
<div class="highlight-python"><pre>sub vcl_recv {
179
  if (req.url ~ "^/images") {
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
180
    unset req.http.cookie;
181
  }
182
}</pre>
183
</div>
184
<p>Now, when the request is handled to the backend server there will be
185
no cookie header. The interesting line is the one with the
186
if-statement. It matches the URL, taken from the request object, and
187
matches it against the regular expression. Note the match operator. If
188
it matches the Cookie: header of the request is unset (deleted).</p>
189
</div>
190
<div class="section" id="example-2-manipulating-beresp">
191
<h2>Example 2 - manipulating beresp<a class="headerlink" href="#example-2-manipulating-beresp" title="Permalink to this headline"></a></h2>
192
<p>Here we override the TTL of a object comming from the backend if it
193
matches certain criteria:</p>
194
<div class="highlight-python"><pre>sub vcl_fetch {
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
195
   if (req.url ~ "\.(png|gif|jpg)$") {
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
196
     unset beresp.http.set-cookie;
197
     set beresp.ttl = 1h;
198
  }
199
}</pre>
200
</div>
201
</div>
202
<div class="section" id="example-3-acls">
203
<h2>Example 3 - ACLs<a class="headerlink" href="#example-3-acls" title="Permalink to this headline"></a></h2>
204
<p>You create a named access control list with the <em>acl</em> keyword. You can match
205
the IP address of the client against an ACL with the match operator.:</p>
206
<div class="highlight-python"><pre># Who is allowed to purge....
207
acl local {
208
    "localhost";
209
    "192.168.1.0"/24; /* and everyone on the local network */
210
    ! "192.168.1.23"; /* except for the dialin router */
211
}
212
213
sub vcl_recv {
214
  if (req.request == "PURGE") {
215
    if (client.ip ~ local) {
216
       return(lookup);
217
    }
218
  }
219
}
220
221
sub vcl_hit {
222
   if (req.request == "PURGE") {
223
     set obj.ttl = 0s;
224
     error 200 "Purged.";
225
    }
226
}
227
228
sub vcl_miss {
229
  if (req.request == "PURGE") {
230
    error 404 "Not in cache.";
231
  }
232
}</pre>
233
</div>
234
</div>
235
</div>
236
237
238
          </div>
239
        </div>
240
      </div>
241
      <div class="sphinxsidebar">
242
        <div class="sphinxsidebarwrapper">
243
  <h3><a href="../index.html">Table Of Contents</a></h3>
244
  <ul>
245
<li><a class="reference internal" href="#">Varnish Configuration Language - VCL</a><ul>
246
<li><a class="reference internal" href="#vcl-recv">vcl_recv</a></li>
247
<li><a class="reference internal" href="#vcl-fetch">vcl_fetch</a></li>
248
<li><a class="reference internal" href="#actions">actions</a></li>
249
<li><a class="reference internal" href="#requests-responses-and-objects">Requests, responses and objects</a></li>
250
<li><a class="reference internal" href="#operators">Operators</a></li>
251
<li><a class="reference internal" href="#example-1-manipulating-headers">Example 1 - manipulating headers</a></li>
252
<li><a class="reference internal" href="#example-2-manipulating-beresp">Example 2 - manipulating beresp</a></li>
253
<li><a class="reference internal" href="#example-3-acls">Example 3 - ACLs</a></li>
254
</ul>
255
</li>
256
</ul>
257
258
  <h4>Previous topic</h4>
259
  <p class="topless"><a href="putting_varnish_on_port_80.html"
260
                        title="previous chapter">Put Varnish on port 80</a></p>
261
  <h4>Next topic</h4>
262
  <p class="topless"><a href="statistics.html"
263
                        title="next chapter">Statistics</a></p>
264
  <h3>This Page</h3>
265
  <ul class="this-page-menu">
266
    <li><a href="../_sources/tutorial/vcl.txt"
267
           rel="nofollow">Show Source</a></li>
268
  </ul>
269
<div id="searchbox" style="display: none">
270
  <h3>Quick search</h3>
271
    <form class="search" action="../search.html" method="get">
272
      <input type="text" name="q" />
273
      <input type="submit" value="Go" />
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
274
      <input type="hidden" name="check_keywords" value="yes" />
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
275
      <input type="hidden" name="area" value="default" />
276
    </form>
277
    <p class="searchtip" style="font-size: 90%">
278
    Enter search terms or a module, class or function name.
279
    </p>
280
</div>
281
<script type="text/javascript">$('#searchbox').show(0);</script>
282
        </div>
283
      </div>
284
      <div class="clearer"></div>
285
    </div>
286
    <div class="related">
287
      <h3>Navigation</h3>
288
      <ul>
289
        <li class="right" style="margin-right: 10px">
290
          <a href="../genindex.html" title="General Index"
291
             >index</a></li>
292
        <li class="right" >
293
          <a href="statistics.html" title="Statistics"
294
             >next</a> |</li>
295
        <li class="right" >
296
          <a href="putting_varnish_on_port_80.html" title="Put Varnish on port 80"
297
             >previous</a> |</li>
298
        <li><a href="../index.html">Varnish version 3.0.3 documentation</a> &raquo;</li>
299
          <li><a href="index.html" >Using Varnish</a> &raquo;</li> 
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
300
      </ul>
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
301
    </div>
302
    <div class="footer">
303
        &copy; Copyright 2010, Varnish Project.
304
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
305
    </div>
0.1.16 by Stig Sandbeck Mathisen
Import upstream version 3.0.3
306
  </body>
0.1.15 by Stig Sandbeck Mathisen
Import upstream version 3.0.2
307
</html>
308
309