ProxyHeaders
Overview
Usage
- Node
- Deno
import { ProxyHeaders } from 'keywork/http/headers'
import { ProxyHeaders } from 'https://deno.land/x/keywork/http/headers'
Properties
Forwarded
Forwarded: `string`
Defined in
http/headers/mod.ts:296
Via
Via: `string`
Added by proxies, both forward and reverse proxies, and can appear in the request headers and the response headers.
Defined in
http/headers/mod.ts:304
X-Forwarded-For
X-Forwarded-For: `string`
Identifies the originating IP addresses of a client connecting to a web server through an HTTP proxy or a load balancer.
Defined in
http/headers/mod.ts:298
X-Forwarded-Host
X-Forwarded-Host: `string`
Identifies the original host requested that a client used to connect to your proxy or load balancer.
Defined in
http/headers/mod.ts:300
X-Forwarded-Proto
X-Forwarded-Proto: `string`
Identifies the protocol (HTTP or HTTPS) that a client used to connect to your proxy or load balancer.
Defined in
http/headers/mod.ts:302
Contains information from the client-facing side of proxy servers that is altered or lost when a proxy is involved in the path of the request.