diff options
| author | Francis Lavoie <lavofr@gmail.com> | 2022-05-04 14:42:37 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-04 12:42:37 -0600 | 
| commit | ec86a2f7a3905c888b8c953255a98a50be70d5db (patch) | |
| tree | e7021a338e80f226d03de462698e28e2a5ee76f2 /modules/caddyhttp | |
| parent | e7fbee8c82740bd3e21c9abdcfe5a1e922244c09 (diff) | |
caddyfile: Shortcut for `remote_ip` for private IP ranges (#4753)
Diffstat (limited to 'modules/caddyhttp')
| -rw-r--r-- | modules/caddyhttp/matchers.go | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/modules/caddyhttp/matchers.go b/modules/caddyhttp/matchers.go index 9f10e2c..f8953ef 100644 --- a/modules/caddyhttp/matchers.go +++ b/modules/caddyhttp/matchers.go @@ -867,6 +867,17 @@ func (m *MatchRemoteIP) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {  				m.Forwarded = true  				continue  			} +			if d.Val() == "private_ranges" { +				m.Ranges = append(m.Ranges, []string{ +					"192.168.0.0/16", +					"172.16.0.0/12", +					"10.0.0.0/8", +					"127.0.0.1/8", +					"fd00::/8", +					"::1", +				}...) +				continue +			}  			m.Ranges = append(m.Ranges, d.Val())  		}  		if d.NextBlock(0) { | 
