caddyhttp: Document that remote_ip reads X-Forwarded-For header

https://caddy.community/t/remote-ip-behaviour/10762?u=matt
This commit is contained in:
Matthew Holt 2020-12-09 13:06:57 -07:00
parent a748151666
commit b8a799df9f
No known key found for this signature in database
GPG Key ID: 2A349DD577D586A5
1 changed files with 3 additions and 0 deletions

View File

@ -105,6 +105,9 @@ type (
MatchProtocol string
// MatchRemoteIP matches requests by client IP (or CIDR range).
// If the X-Forwarded-For header is set, the first IP in that list
// is used as the reference IP; otherwise, the remote IP of the
// connection is the reference.
MatchRemoteIP struct {
Ranges []string `json:"ranges,omitempty"`