Commit fac3e589 authored by Nils Goroll's avatar Nils Goroll

improve documentation on backend timeout defaults

parent 8311f0bc
...@@ -201,6 +201,8 @@ Example:: ...@@ -201,6 +201,8 @@ Example::
} }
.. _ref_backend_def:
Backend definition Backend definition
------------------ ------------------
...@@ -239,12 +241,18 @@ parameters. The following attributes are available: ...@@ -239,12 +241,18 @@ parameters. The following attributes are available:
``.connect_timeout`` ``.connect_timeout``
Timeout for connections. Timeout for connections.
Default: :ref:`ref_param_connect_timeout` parameter.
``.first_byte_timeout`` ``.first_byte_timeout``
Timeout for first byte. Timeout for first byte.
Default: :ref:`ref_param_first_byte_timeout` parameter.
``.between_bytes_timeout`` ``.between_bytes_timeout``
Timeout between bytes. Timeout between bytes.
Default: :ref:`ref_param_between_bytes_timeout` parameter.
``.probe`` ``.probe``
Attach a probe to the backend. See `Probes`_ Attach a probe to the backend. See `Probes`_
......
...@@ -585,6 +585,12 @@ bereq.connect_timeout ...@@ -585,6 +585,12 @@ bereq.connect_timeout
Writable from: vcl_pipe, backend Writable from: vcl_pipe, backend
Default:
* :ref:`ref_backend_def` ``.connect_timeout`` attribute, which
defaults to
* :ref:`ref_param_connect_timeout` parameter.
The time in seconds to wait for a backend connection to be The time in seconds to wait for a backend connection to be
established. established.
...@@ -597,6 +603,12 @@ bereq.first_byte_timeout ...@@ -597,6 +603,12 @@ bereq.first_byte_timeout
Writable from: backend Writable from: backend
Default:
* :ref:`ref_backend_def` ``.first_byte_timeout`` attribute,
which defaults to
* :ref:`ref_param_first_byte_timeout` parameter.
The time in seconds to wait getting the first byte back The time in seconds to wait getting the first byte back
from the backend. Not available in pipe mode. from the backend. Not available in pipe mode.
...@@ -609,6 +621,12 @@ bereq.between_bytes_timeout ...@@ -609,6 +621,12 @@ bereq.between_bytes_timeout
Writable from: backend Writable from: backend
Default:
* :ref:`ref_backend_def` ``.between_bytes_timeout`` backend
attribute, which defaults to
* :ref:`ref_param_between_bytes_timeout` parameter.
The time in seconds to wait between each received byte from the The time in seconds to wait between each received byte from the
backend. Not available in pipe mode. backend. Not available in pipe mode.
......
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