Commit 0bdcee4f authored by Federico G. Schwindt's avatar Federico G. Schwindt

Spelling and minor fixes

parent 082f2596
......@@ -65,7 +65,7 @@ usually quite focused on source-code and such. Everybody on
the `-dev` list is also on `-misc`, so cross-posting only serves to annoy
those people.
We also maintain a community wiki_ for Varnish, there you will find information on planned events, meetings, current backlog, troube tickets , and links to resources and documentation.
We also maintain a community wiki_ for Varnish, there you will find information on planned events, meetings, current backlog, trouble tickets , and links to resources and documentation.
.. XXX: we should introduce the wiki (if we care about it) before
.. we start referring to it (below). Make a wiki chapter?
......
......@@ -32,9 +32,9 @@ The Varnish Reference Manual
. - counters explained
. common filtering options for shmlog tools
. varnishlog ..
. varnsihtop ..
. varnsihncsa ..
. varnsihhist ..
. varnishtop ..
. varnishncsa ..
. varnishhist ..
The CLI:
. connections: -T -S -M
. varnishadm
......
......@@ -50,7 +50,7 @@ OPTIONS
The syntax and operation of the actual CLI interface is described in
the :ref:`varnish-cli(7)` manual page. Parameteres are described in
the :ref:`varnish-cli(7)` manual page. Parameters are described in
:ref:`varnishd(1)` manual page.
Additionally, a summary of commands can be obtained by issuing the
......
......@@ -58,7 +58,7 @@ The following options are available:
any seconds. If zero the connection is attempted only once and
will fail immediately if unsuccessful. If set to "off", the
connection will not fail, allowing the utility to start and
wait indefinetely for the Varnish instance to appear.
wait indefinitely for the Varnish instance to appear.
Defaults to 5 seconds.
-V
......
......@@ -306,15 +306,14 @@ To match an IP address against an ACL, simply use the match operator::
VCL objects
-----------
A VCL object can be made with the *new* keyword.
Example::
A VCL object can be instantiated with the *new* keyword::
sub vcl_init {
new b = directors.round_robin()
b.add_backend(node1);
}
This is only available in vcl_init.
Subroutines
-----------
......@@ -379,9 +378,6 @@ hash_data(input)
Adds an input to the hash input. In the built-in VCL hash_data()
is called on the host and URL of the *request*. Available in vcl_hash.
new()
Instanciate a new VCL object. Available in vcl_init.
rollback()
Restore *req* HTTP headers to their original state. This function is
deprecated. Use std.rollback() instead.
......
......@@ -34,7 +34,7 @@ tricky in ways a regular logfile is not.
When you open a file in "append" mode, the operating system guarantees
that whatever you write will not overwrite existing data in the file.
The neat result of this is that multiple procesess or threads writing
The neat result of this is that multiple processes or threads writing
to the same file does not even need to know about each other, it all
works just as you would expect.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment