[master] cdfdb28 removed unused file

Per Buer perbu at varnish-cache.org
Fri Aug 30 08:49:59 CEST 2013


commit cdfdb28db55f936c72c323aafa03ff18726e6926
Author: Per Buer <perbu at varnish-software.com>
Date:   Fri Aug 30 08:49:26 2013 +0200

    removed unused file

diff --git a/doc/sphinx/include/vcl-backends.rst b/doc/sphinx/include/vcl-backends.rst
deleted file mode 100644
index 0290bf7..0000000
--- a/doc/sphinx/include/vcl-backends.rst
+++ /dev/null
@@ -1,44 +0,0 @@
-Backend declarations
---------------------
-
-A backend declaration creates and initializes a named backend object:
-::
-
-  backend www {
-    .host = "www.example.com";
-    .port = "http";
-  }
-
-The backend object can later be used to select a backend at request time:
-::
-
-  if (req.http.host ~ "(?i)^(www.)?example.com$") {
-    set req.backend = www;
-  }
-
-To avoid overloading backend servers, .max_connections can be set to
-limit the maximum number of concurrent backend connections.
-
-The timeout parameters can be overridden in the backend declaration.
-The timeout parameters are .connect_timeout for the time to wait for a
-backend connection, .first_byte_timeout for the time to wait for the
-first byte from the backend and .between_bytes_timeout for time to
-wait between each received byte.
-
-These can be set in the declaration like this:
-::
-
-  backend www {
-    .host = "www.example.com";
-    .port = "http";
-    .connect_timeout = 1s;
-    .first_byte_timeout = 5s;
-    .between_bytes_timeout = 2s;
-  }
-
-To mark a backend as unhealthy after number of items have been added
-to its saintmode list ``.saintmode_threshold`` can be set to the maximum
-list size. Setting a value of 0 disables saint mode checking entirely
-for that backend.  The value in the backend declaration overrides the
-parameter.
-



More information about the varnish-commit mailing list