Repository: trafficserver Updated Branches: refs/heads/master 2440f464d -> 9ee6274f3
[TS-3820] Docs for the redirection settings. Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/9ee6274f Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/9ee6274f Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/9ee6274f Branch: refs/heads/master Commit: 9ee6274f3539a7fccd1eae6965eba70d33173498 Parents: 2440f46 Author: Sudheer Vinukonda <[email protected]> Authored: Wed Aug 19 00:17:43 2015 +0000 Committer: Sudheer Vinukonda <[email protected]> Committed: Wed Aug 19 00:17:43 2015 +0000 ---------------------------------------------------------------------- .../configuration/records.config.en.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9ee6274f/doc/reference/configuration/records.config.en.rst ---------------------------------------------------------------------- diff --git a/doc/reference/configuration/records.config.en.rst b/doc/reference/configuration/records.config.en.rst index 40775d7..8d5cb5a 100644 --- a/doc/reference/configuration/records.config.en.rst +++ b/doc/reference/configuration/records.config.en.rst @@ -1030,6 +1030,25 @@ The default value of ``0`` specifies that there is no timeout. The proportion of total document size already transferred when a client aborts at which the proxy continues fetching the document from the origin server to get it into the cache (a **background fill**). +HTTP Redirection +================ + +.. ts:cv:: CONFIG proxy.config.http.redirection_enabled INT 0 + + This setting indicates whether Trafficserver does a redirect follow location on receiving a 3XX Redirect response from the Origin + server. The redirection attempt is transparent to the client and the client is served the final response from the redirected-to + location. + +.. ts:cv:: CONFIG proxy.config.http.number_of_redirections INT 1 + + This setting determines the maximum number of times Trafficserver does a redirect follow location on receiving a 3XX Redirect response + for a given client request. + +.. ts:cv:: CONFIG proxy.config.http.redirect_host_no_port INT 1 + + This setting enables Trafficserver to not include the port in the Host header in the redirect follow request for default/standard ports + (e.g. 80 for HTTP and 443 for HTTPS). Note that the port is still included in the Host header if it's non-default. + Origin Server Connect Attempts ==============================
