<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.13 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-httpbis-proxy-status-01" category="std">

  <front>
    <title abbrev="Proxy-Status">The Proxy-Status HTTP Response Header Field</title>

    <author initials="M." surname="Nottingham" fullname="Mark Nottingham">
      <organization>Fastly</organization>
      <address>
        <email>mnot@mnot.net</email>
        <uri>https://www.mnot.net/</uri>
      </address>
    </author>
    <author initials="P." surname="Sikora" fullname="Piotr Sikora">
      <organization>Google</organization>
      <address>
        <email>piotrsikora@google.com</email>
      </address>
    </author>

    <date />

    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document defines the Proxy-Status HTTP header field to convey the details of intermediary handling of responses, including generated errors.</t>



    </abstract>


    <note title="Note to Readers">


<t><spanx style="emph">RFC EDITOR: please remove this section before publication</spanx></t>

<t>Discussion of this draft takes place on the HTTP working group mailing list
(ietf-http-wg@w3.org), which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/">https://lists.w3.org/Archives/Public/ietf-http-wg/</eref>.</t>

<t>Working Group information can be found at <eref target="https://httpwg.org/">https://httpwg.org/</eref>; source
code and issues list for this draft can be found at
<eref target="https://github.com/httpwg/http-extensions/labels/proxy-status">https://github.com/httpwg/http-extensions/labels/proxy-status</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>HTTP intermediaries – including both forward proxies and gateways (also known as “reverse
proxies”) – have become an increasingly significant part of HTTP deployments. In particular,
reverse proxies and Content Delivery Networks (CDNs) form part of the critical infrastructure of
many Web sites.</t>

<t>Typically, HTTP intermediaries forward requests towards the origin server and then forward their responses back to clients. However, if an error occurs, the response is generated by the intermediary itself.</t>

<t>HTTP accommodates these types of errors with a few status codes; for example, 502 Bad Gateway and 504 Gateway Timeout. However, experience has shown that more information is necessary to aid debugging and communicate what’s happened to the client.</t>

<t>Additionally, intermediaries sometimes want to convey additional information about their handling of a response, even if they did not generate it.</t>

<t>To enable these uses, <xref target="header"/> defines a new HTTP response header field to allow intermediaries to convey details of their handling of a response, and <xref target="types"/> defines a set of Proxy Error Types for use when a proxy generates the response. <xref target="register"/> explains how to define new Proxy Error Types.</t>

<section anchor="notational-conventions" title="Notational Conventions">

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”,
“RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as
shown here.</t>

<t>This specification uses Structured Headers <xref target="I-D.ietf-httpbis-header-structure"/> to specify syntax. The terms sh-param-list, sh-item, sh-string, sh-token and sh-integer refer to the structured types defined therein.</t>

<t>Note that in this specification, “proxy” is used to indicate both forward and reverse proxies, otherwise known as gateways. “Next hop” indicates the connection in the direction leading to the origin server for the request.</t>

</section>
</section>
<section anchor="header" title="The Proxy-Status HTTP Header Field">

<t>The Proxy-Status HTTP response header field allows an intermediary to convey additional information about its handling of a response and its associated request.</t>

<t>It is a Structured Headers <xref target="I-D.ietf-httpbis-header-structure"/> List of parameterised Tokens:</t>

<figure><artwork type="abnf"><![CDATA[
Cache-Status   = sh-list
]]></artwork></figure>

<t>Each member of the list represents an intermediary that has handled the response. The first member of the list represents the intermediary closest to the origin server, and the last member of the list represents the intermediary closest to the user agent.</t>

<t>For example:</t>

<figure><artwork type="example"><![CDATA[
Proxy-Status: FooProxy, ExampleCDN
]]></artwork></figure>

<t>indicates that this response was handled first by FooAccelerator and then ExampleCDN.</t>

<t>Parameters on each member convey additional information about that intermediary’s handling of the response; see <xref target="params"/> for defined parameters.</t>

<t>Intermediaries determine when it is appropriate to add the Proxy-Status header field to a response. Some might decide to add it to all responses, whereas others might only do so when specifically configured to, or when the request contains a header that activates a debugging mode.</t>

<t>When adding a value to the Proxy-Status header field, intermediaries SHOULD preserve the existing contents of the header, to allow debugging of the entire chain of intermediaries handling the request.</t>

<t>The list members identify the intermediary that inserted the value, and MUST have a type of either sh-string or sh-token. Depending on the deployment, this might be a product or service name (e.g., ExampleProxy or “Example CDN”), a hostname (“proxy-3.example.com”), and IP address, or a generated string.</t>

<t>Each member of the list can also have a number of parameters that describe that intermediary’s handling of the request. While all of these parameters are OPTIONAL, intermediaries are encouraged to provide as much information as possible.</t>

<t>Proxy-Status MAY be sent in HTTP trailers, but – as with all trailers – it might be silently discarded along the path to the user agent, so this SHOULD NOT be done unless it is not possible to send it in headers. For example, if an intermediary is streaming a response and the upstream connection suddenly terminates, Proxy-Status can be appended to the trailers of the outgoing message (since the headers have already been sent).</t>

<t>Note that there are various security considerations for intermediaries using the Proxy-Status header field; see <xref target="security"/>.</t>

<t>Origin servers MUST NOT generate the Proxy-Status header field.</t>

<section anchor="params" title="Proxy-Status Parameters">

<t>This section lists parameters that can be used on the members of Proxy-Status.</t>

<section anchor="origin" title="origin">

<t>The <spanx style="verb">origin</spanx> parameter’s value is a sh-string or sh-token that identifies the origin server selected (and used, if contacted) for this response. Its contents might be a hostname, IP address, or alias.</t>

<t>This is most useful for gateways (also known as “reverse proxies”), since they are often configured to use an origin server other than that which appears in the URL, and sometimes they use several origins to serve a given site.</t>

<t>For example:</t>

<figure><artwork type="example"><![CDATA[
Proxy-Status: cdn.example.org; origin=backend.example.org
]]></artwork></figure>

</section>
<section anchor="fwd-protocol" title="fwd-protocol">

<t>The <spanx style="verb">fwd-protocol</spanx> parameter’s value is a sh-token indicating the ALPN protocol identifier <xref target="RFC7301"/> used by the intermediary to connect to the next hop. This is only applicable when that connection was actually established.</t>

<t>For example:</t>

<figure><artwork type="example"><![CDATA[
Proxy-Status: "proxy.example.org"; fwd-protocol=h2
]]></artwork></figure>

</section>
<section anchor="error" title="error">

<t>The <spanx style="verb">error</spanx> parameter’s value is a sh-token that is a Proxy Error Type. When present, it indicates that the response was generated by the proxy, not the origin server or any other upstream server.</t>

<t><xref target="types"/> lists the Proxy Error Types defined in this document; new ones can be defined using the procedure outlined in <xref target="register"/>.</t>

<t>For example:</t>

<figure><artwork type="example"><![CDATA[
HTTP/1.1 504 Gateway Timeout
Proxy-Status: SomeCDN; error=connection_timeout
]]></artwork></figure>

<t>indicates that this 504 response was generated by SomeCDN, due to a connection timeout when going forward.</t>

<t>Or:</t>

<figure><artwork type="example"><![CDATA[
HTTP/1.1 429 Too Many Requests
Proxy-Status: SomeReverseProxy; error=http_request_error
]]></artwork></figure>

<t>indicates that this 429 Too Many Requests response was generated by the intermediary, not the origin.</t>

<t>Each Proxy Error Type has a Recommended HTTP Status Code. When generating a HTTP response containing <spanx style="verb">error</spanx>, its HTTP status code SHOULD be set to the Recommended HTTP Status Code. However, there may be circumstances (e.g., for backwards compatibility with previous behaviours) when another status code might be used.</t>

</section>
<section anchor="details" title="details">

<t>The <spanx style="verb">details</spanx> parameter’s value is a sh-string containing additional information not captured anywhere else. This can include implementation-specific or deployment-specific information.</t>

<t>For example:</t>

<figure><artwork type="example"><![CDATA[
Proxy-Status: ExampleProxy; error="http_protocol_error";
              details="Malformed response header - space before colon"
]]></artwork></figure>

</section>
</section>
<section anchor="types" title="Proxy Error Types">

<t>This section lists the Proxy Error Types defined by this document. See <xref target="register"/> for information about defining new Proxy Error Types.</t>

<section anchor="dns-timeout" title="DNS Timeout">

<t><list style="symbols">
  <t>Name: dns_timeout</t>
  <t>Description: The intermediary encountered a timeout when trying to find an IP address for the next hop hostname.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 504</t>
</list></t>

</section>
<section anchor="dns-error" title="DNS Error">

<t><list style="symbols">
  <t>Name: dns_error</t>
  <t>Description: The intermediary encountered a DNS error when trying to find an IP address for the next hop hostname.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>rcode: A sh-string conveying the DNS RCODE that indicates the error type. See <xref target="RFC8499"/>, Section 3.</t>
    </list></t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="destination-not-found" title="Destination Not Found">

<t><list style="symbols">
  <t>Name: destination_not_found</t>
  <t>Description: The intermediary cannot determine the appropriate next hop to use for this request; for example, it may not be configured. Note that this error is specific to gateways, which typically require specific configuration to identify the “backend” server; forward proxies use in-band information to identify the origin server.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 500</t>
</list></t>

</section>
<section anchor="destination-unavailable" title="Destination Unavailable">

<t><list style="symbols">
  <t>Name: destination_unavailable</t>
  <t>Description: The intermediary considers the next hop to be unavailable; e.g., recent attempts to communicate with it may have failed, or a health check may indicate that it is down.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 503</t>
</list></t>

</section>
<section anchor="destination-ip-prohibited" title="Destination IP Prohibited">

<t><list style="symbols">
  <t>Name: destination_ip_prohibited</t>
  <t>Description: The intermediary is configured to prohibit connections to the next hop IP address.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="destination-ip-unroutable" title="Destination IP Unroutable">

<t><list style="symbols">
  <t>Name: destination_ip_unroutable</t>
  <t>Description: The intermediary cannot find a route to the next hop IP address.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="connection-refused" title="Connection Refused">

<t><list style="symbols">
  <t>Name: connection_refused</t>
  <t>Description: The intermediary’s connection to the next hop was refused.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="connection-terminated" title="Connection Terminated">

<t><list style="symbols">
  <t>Name: connection_terminated</t>
  <t>Description: The intermediary’s connection to the next hop was closed before any part of the response was received. If some part was received, see http_response_incomplete.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="connection-timeout" title="Connection Timeout">

<t><list style="symbols">
  <t>Name: connection_timeout</t>
  <t>Description: The intermediary’s attempt to open a connection to the next hop timed out.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 504</t>
</list></t>

</section>
<section anchor="connection-read-timeout" title="Connection Read Timeout">

<t><list style="symbols">
  <t>Name: connection_read_timeout</t>
  <t>Description: The intermediary was expecting data on a connection (e.g., part of a response), but did not receive any new data in a configured time limit.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 504</t>
</list></t>

</section>
<section anchor="connection-write-timeout" title="Connection Write Timeout">

<t><list style="symbols">
  <t>Name: connection_write_timeout</t>
  <t>Description: The intermediary was attempting to write data to a connection, but was not able to (e.g., because its buffers were full).</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 504</t>
</list></t>

</section>
<section anchor="connection-limit-reached" title="Connection Limit Reached">

<t><list style="symbols">
  <t>Name: connnection_limit_reached</t>
  <t>Description: The intermediary is configured to limit the number of connections it has to the next hop, and that limit has been passed.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 503</t>
</list></t>

</section>
<section anchor="http-incomplete-response" title="HTTP Incomplete Response">

<t><list style="symbols">
  <t>Name: http_response_incomplete</t>
  <t>Description: The intermediary received an incomplete response to the request from the next hop.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="http-protocol-error" title="HTTP Protocol Error">

<t><list style="symbols">
  <t>Name: http_protocol_error</t>
  <t>Description: The intermediary encountered a HTTP protocol error when communicating with the next hop. This error should only be used when a more specific one is not defined.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="http-response-header-block-too-large" title="HTTP Response Header Block Too Large">

<t><list style="symbols">
  <t>Name: http_response_header_block_size</t>
  <t>Description: The intermediary received a response to the request whose header block was considered too large.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>header_block_size: a sh-integer indicating how large the headers received were. Note that they might not be complete; i.e., the intermediary may have discarded or refused additional data.</t>
    </list></t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="http-response-header-too-large" title="HTTP Response Header Too Large">

<t><list style="symbols">
  <t>Name: http_response_header_size</t>
  <t>Description: The intermediary received a response to the request containing an individual header line that was considered too large.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>header_name: a sh-string indicating the name of the header that triggered the error.</t>
    </list></t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="http-response-body-too-large" title="HTTP Response Body Too Large">

<t><list style="symbols">
  <t>Name: http_response_body_size</t>
  <t>Description: The intermediary received a response to the request whose body was considered too large.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>body_size: a sh-integer indicating how large the body received was. Note that it may not have been complete; i.e., the intermediary may have discarded or refused additional data.</t>
    </list></t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="http-response-transfer-coding-error" title="HTTP Response Transfer-Coding Error">

<t><list style="symbols">
  <t>Name: http_response_transfer_coding</t>
  <t>Description: The intermediary encountered an error decoding the transfer-coding of the response.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>coding: a sh-token containing the specific coding that caused the error.</t>
    </list></t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="http-response-content-coding-error" title="HTTP Response Content-Coding Error">

<t><list style="symbols">
  <t>Name: http_response_content_coding</t>
  <t>Description: The intermediary encountered an error decoding the content-coding of the response.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>coding: a sh-token containing the specific coding that caused the error.</t>
    </list></t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="http-response-timeout" title="HTTP Response Timeout">

<t><list style="symbols">
  <t>Name: http_response_timeout</t>
  <t>Description: The intermediary reached a configured time limit waiting for the complete response.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 504</t>
</list></t>

</section>
<section anchor="tls-handshake-error" title="TLS Handshake Error">

<t><list style="symbols">
  <t>Name: tls_handshake_error</t>
  <t>Description: The intermediary encountered an error during TLS handshake with the next hop.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>alert_message: a sh-token containing the applicable description string from the TLS Alerts registry.</t>
    </list></t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="tls-untrusted-peer-certificate" title="TLS Untrusted Peer Certificate">

<t><list style="symbols">
  <t>Name: tls_untrusted_peer_certificate</t>
  <t>Description: The intermediary received an untrusted peer certificate during TLS handshake with the next hop.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="tls-expired-peer-certificate" title="TLS Expired Peer Certificate">

<t><list style="symbols">
  <t>Name: tls_expired_peer_certificate</t>
  <t>Description: The intermediary received an expired peer certificate during TLS handshake with the next hop.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="tls-unexpected-peer-certificate" title="TLS Unexpected Peer Certificate">

<t><list style="symbols">
  <t>Name: tls_unexpected_peer_certificate</t>
  <t>Description: The intermediary received an unexpected peer certificate (e.g., SPKI doesn’t match) during the TLS handshake with the next hop.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>identity: a sh-string containing a comma-separated list of Subject Alternative Names from the certificate received from the next hop.</t>
      <t>sha256: a sh-string containing the hex-encoded SHA-256 of the certificate received from the next hop.</t>
      <t>spki: a sh-string containing the base64-encoded SHA-256 of the Subject Public Key Info (SPKI) from the certificate received from the next hop.</t>
    </list></t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="tls-missing-proxy-certificate" title="TLS Missing Proxy Certificate">

<t><list style="symbols">
  <t>Name: tls_missing_proxy_certificate</t>
  <t>Description: The next hop requested a client certificate from the intermediary during TLS handshake, but it wasn’t configured with one.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 500</t>
</list></t>

</section>
<section anchor="tls-rejected-proxy-certificate" title="TLS Rejected Proxy Certificate">

<t><list style="symbols">
  <t>Name: tls_rejected_proxy_certificate</t>
  <t>Description: The next hop rejected the client certificate provided by the intermediary during TLS handshake.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 500</t>
</list></t>

</section>
<section anchor="tls-error" title="TLS Error">

<t><list style="symbols">
  <t>Name: tls_error</t>
  <t>Description: The intermediary encountered a TLS error when communicating with the next hop.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>alert_message: a sh-token containing the applicable description string from the TLS Alerts registry.</t>
    </list></t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="http-request-error" title="HTTP Request Error">

<t><list style="symbols">
  <t>Name: http_request_error</t>
  <t>Description: The intermediary is generating a client (4xx) response on the origin’s behalf. Applicable status codes include (but are not limited to) 400, 403, 405, 406, 408, 411, 413, 414, 415, 416, 417, 429.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>status_code: a sh-integer containing the generated status code.</t>
      <t>status_phrase: a sh-string containing the generated status phrase.</t>
    </list></t>
  <t>Recommended HTTP status code: The applicable 4xx status code</t>
</list></t>

<t>This type helps distinguish between responses generated by intermediaries from those generated by the origin.</t>

</section>
<section anchor="http-request-denied" title="HTTP Request Denied">

<t><list style="symbols">
  <t>Name: http_request_denied</t>
  <t>Description: The intermediary rejected the HTTP request based on its configuration and/or policy settings. The request wasn’t forwarded to the next hop.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 400</t>
</list></t>

</section>
<section anchor="http-upgrade-failed" title="HTTP Upgrade Failed">

<t><list style="symbols">
  <t>Name: http_upgrade_failed</t>
  <t>Description: The HTTP Upgrade between the intermediary and the next hop failed.</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
<section anchor="proxy-internal-response" title="Proxy Internal Response">

<t><list style="symbols">
  <t>Name: proxy_internal_response</t>
  <t>Description: The intermediary generated the response locally, without attempting to connect to the next hop (e.g. in response to a request to a debug endpoint terminated at the intermediary).</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code:</t>
</list></t>

</section>
<section anchor="proxy-internal-error" title="Proxy Internal Error">

<t><list style="symbols">
  <t>Name: proxy_internal_error</t>
  <t>Description: The intermediary encountered an internal error unrelated to the origin.</t>
  <t>Extra Parameters:
  <list style="symbols">
      <t>error: a sh-string containing details about the error condition.</t>
    </list></t>
  <t>Recommended HTTP status code: 500</t>
</list></t>

</section>
<section anchor="proxy-loop-detected" title="Proxy Loop Detected">

<t><list style="symbols">
  <t>Name: proxy_loop_detected</t>
  <t>Description: The intermediary tried to forward the request to itself, or a loop has been detected using different means (e.g. <xref target="RFC8586"/>).</t>
  <t>Extra Parameters: None.</t>
  <t>Recommended HTTP status code: 502</t>
</list></t>

</section>
</section>
<section anchor="register" title="Defining New Proxy Error Types">

<t>New Proxy Error Types can be defined by registering them in the HTTP Proxy Error Types registry.</t>

<t>Registration requests are reviewed and approved by a Designated Expert, as per <xref target="RFC8126"/>, Section 4.5. A specification document is appreciated, but not required.</t>

<t>The Expert(s) should consider the following factors when evaluating requests:</t>

<t><list style="symbols">
  <t>Community feedback</t>
  <t>If the value is sufficiently well-defined</t>
  <t>If the value is generic; vendor-specific, application-specific and deployment-specific values are discouraged</t>
</list></t>

<t>Registration requests should use the following template:</t>

<t><list style="symbols">
  <t>Name: [a name for the Proxy Error Type that is matches sh-token]</t>
  <t>Description: [a description of the conditions that generate the Proxy Error Type]</t>
  <t>Extra Parameters: [zero or more optional parameters, along with their allowable type(s)]</t>
  <t>Recommended HTTP status code: [the appropriate HTTP status code for this entry]</t>
</list></t>

<t>See the registry at <eref target="https://iana.org/assignments/http-proxy-statuses">https://iana.org/assignments/http-proxy-statuses</eref> for details on where to send registration requests.</t>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>Upon publication, please create the HTTP Proxy Error Types registry at <eref target="https://iana.org/assignments/http-proxy-statuses">https://iana.org/assignments/http-proxy-statuses</eref> and populate it with the types defined in <xref target="types"/>; see <xref target="register"/> for its associated procedures.</t>

</section>
<section anchor="security" title="Security Considerations">

<t>One of the primary security concerns when using Proxy-Status is leaking information that might aid an attacker. For example, information about the intermediary’s configuration and back-end topology can be exposed.</t>

<t>As a result, care needs to be taken when deciding to generate a Proxy-Status header. Note that intermediaries are not required to generate a Proxy-Status header field in any response, and can conditionally generate them based upon request attributes (e.g., authentication tokens, IP address).</t>

<t>Likewise, generation of all parameters is optional.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference  anchor="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



<reference anchor="I-D.ietf-httpbis-header-structure">
<front>
<title>Structured Headers for HTTP</title>

<author initials='M' surname='Nottingham' fullname='Mark Nottingham'>
    <organization />
</author>

<author initials='P' surname='Kamp' fullname='Poul-Henning Kamp'>
    <organization />
</author>

<date month='August' day='25' year='2019' />

<abstract><t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header fields.  It is intended for use by specifications of new HTTP header fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-httpbis-header-structure-13' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-httpbis-header-structure-13.txt' />
</reference>



<reference  anchor="RFC7301" target='https://www.rfc-editor.org/info/rfc7301'>
<front>
<title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
<author initials='S.' surname='Friedl' fullname='S. Friedl'><organization /></author>
<author initials='A.' surname='Popov' fullname='A. Popov'><organization /></author>
<author initials='A.' surname='Langley' fullname='A. Langley'><organization /></author>
<author initials='E.' surname='Stephan' fullname='E. Stephan'><organization /></author>
<date year='2014' month='July' />
<abstract><t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t></abstract>
</front>
<seriesInfo name='RFC' value='7301'/>
<seriesInfo name='DOI' value='10.17487/RFC7301'/>
</reference>



<reference  anchor="RFC8499" target='https://www.rfc-editor.org/info/rfc8499'>
<front>
<title>DNS Terminology</title>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<author initials='A.' surname='Sullivan' fullname='A. Sullivan'><organization /></author>
<author initials='K.' surname='Fujiwara' fullname='K. Fujiwara'><organization /></author>
<date year='2019' month='January' />
<abstract><t>The Domain Name System (DNS) is defined in literally dozens of different RFCs.  The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has sometimes changed in the decades since the DNS was first defined.  This document gives current definitions for many of the terms used in the DNS in a single document.</t><t>This document obsoletes RFC 7719 and updates RFC 2308.</t></abstract>
</front>
<seriesInfo name='BCP' value='219'/>
<seriesInfo name='RFC' value='8499'/>
<seriesInfo name='DOI' value='10.17487/RFC8499'/>
</reference>



<reference  anchor="RFC8126" target='https://www.rfc-editor.org/info/rfc8126'>
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<author initials='M.' surname='Cotton' fullname='M. Cotton'><organization /></author>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<author initials='T.' surname='Narten' fullname='T. Narten'><organization /></author>
<date year='2017' month='June' />
<abstract><t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t><t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t><t>This is the third edition of this document; it obsoletes RFC 5226.</t></abstract>
</front>
<seriesInfo name='BCP' value='26'/>
<seriesInfo name='RFC' value='8126'/>
<seriesInfo name='DOI' value='10.17487/RFC8126'/>
</reference>




    </references>

    <references title='Informative References'>





<reference  anchor="RFC8586" target='https://www.rfc-editor.org/info/rfc8586'>
<front>
<title>Loop Detection in Content Delivery Networks (CDNs)</title>
<author initials='S.' surname='Ludin' fullname='S. Ludin'><organization /></author>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'><organization /></author>
<author initials='N.' surname='Sullivan' fullname='N. Sullivan'><organization /></author>
<date year='2019' month='April' />
<abstract><t>This document defines the CDN-Loop request header field for HTTP. CDN-Loop addresses an operational need that occurs when an HTTP request is intentionally forwarded between Content Delivery Networks (CDNs), but is then accidentally or maliciously re-routed back into the original CDN causing a non-terminating loop.  The new header field can be used to identify the error and terminate the loop.</t></abstract>
</front>
<seriesInfo name='RFC' value='8586'/>
<seriesInfo name='DOI' value='10.17487/RFC8586'/>
</reference>




    </references>



  </back>

<!-- ##markdown-source:
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
0k82S3iFNbpUiFervEXx758i0/8/yM6yB0hPAAA=

-->

</rfc>

