Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/admin-guide/files/records.config.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3787,9 +3787,9 @@ SSL Termination
This feature requires |TS| to be built with POSIX
capabilities enabled.

.. ts:cv:: CONFIG proxy.config.ssl.handshake_timeout_in INT 0
.. ts:cv:: CONFIG proxy.config.ssl.handshake_timeout_in INT 30

When enabled this limits the total duration for the server side SSL
When enabled this limits the total duration for the incoming side SSL
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer "incoming (requestor-facing)".

handshake.

See :ref:`admin-performance-timeouts` for more discussion on |TS| timeouts.
Expand Down
4 changes: 2 additions & 2 deletions doc/admin-guide/performance/index.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ engine.

:ts:cv:`proxy.config.ssl.handshake_timeout_in` configures the time, in seconds,
after which incoming client connections will abort should the SSL handshake not
be completed. The default of ``0`` disables the timeout.
be completed. A value of ``0`` will disable the timeout.

When :ref:`admin-ocsp-stapling` is enabled in |TS|, you can configure two
separate timeouts; one for setting the length of time which cached OCSP results
Expand All @@ -406,7 +406,7 @@ cached in |TS| using :ts:cv:`proxy.config.ssl.session_cache.timeout`.

::

CONFIG proxy.config.ssl.handshake_timeout_in INT 0
CONFIG proxy.config.ssl.handshake_timeout_in INT 30
CONFIG proxy.config.ssl.ocsp.cache_timeout INT 3600
CONFIG proxy.config.ssl.ocsp.request_timeout INT 10
CONFIG proxy.config.ssl.session_cache.timeout INT 0
Expand Down