Skip to content
Open
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
13 changes: 0 additions & 13 deletions doc/admin-guide/configuration/hrw4u.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,6 @@ Header Rewrite HRW4U Syntax Description
================= ============================ ================================
no-op no-op(); Explicit no-op statement
no-op [L] break; Exit current section early (last rule)
set-debug set-debug() Enables ATS txn debug
skip-remap skip-remap() Skip remap processing (open proxy)
================= ============================ ================================

Expand Down Expand Up @@ -550,18 +549,6 @@ origin server::
outbound.req.Pragma = "";
}

Enable Debugging Per-Request
----------------------------

Turns on |TS| debugging statements for a transaction, but only when a special
header is present in the client request::

READ_REQUEST {
if inbound.req.X-Debug == "supersekret" {
set-debug();
}
}

Remove Internal Headers
-----------------------

Expand Down
27 changes: 0 additions & 27 deletions doc/admin-guide/plugins/header_rewrite.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1172,22 +1172,6 @@ When invoked, sets the client side MARK value for the current
transaction. The ``<value>`` should be specified as a decimal integer.
Requires at least Linux 2.6.25.

set-debug
~~~~~~~~~
::

set-debug

When invoked, this operator enables the internal transaction debugging flag
(via :func:`TSHttpTxnDebugSet`), which causes debug messages to be printed to
the appropriate logs even when the debug tag has not been enabled. For
additional information on |TS| debugging statements, refer to
:ref:`developer-debug-tags` in the developer's documentation.

.. note::
This operator is deprecated, use the `set-http-cntl`_ operator instead,
with the ``TXN_DEBUG`` control.

set-destination
~~~~~~~~~~~~~~~
::
Expand Down Expand Up @@ -1346,7 +1330,6 @@ INTERCEPT_RETRY Allow intercepts to be retried (default: ``off``)
RESP_CACHEABLE Force the response to be cacheable (default: ``off``)
REQ_CACHEABLE Force the request to be cacheable (default: ``off``)
SERVER_NO_STORE Don't allow the response to be written to cache (default: ``off``)
TXN_DEBUG Enable transaction debugging (default: ``off``)
SKIP_REMAP Don't require a remap match for the transaction (default: ``off``)
================ ====================================================================

Expand Down Expand Up @@ -1790,16 +1773,6 @@ origin server::
rm-header Cache-Control
rm-header Pragma

Enable Debugging Per-Request
----------------------------

Turns on |TS| debugging statements for a transaction, but only when a special
header is present in the client request::

cond %{READ_REQUEST_HDR_HOOK}
cond %{CLIENT-HEADER:X-Debug} =supersekret
set-http-cntl TXN_DEBUG on

Remove Internal Headers
-----------------------

Expand Down