0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

proxy: Parse error if property is unknown

This commit is contained in:
Matthew Holt 2015-07-28 13:50:21 -06:00
parent e043bbdd62
commit a585379bbb

View file

@ -109,6 +109,8 @@ func NewStaticUpstreams(c parse.Dispenser) ([]Upstream, error) {
return upstreams, c.ArgErr() return upstreams, c.ArgErr()
} }
upstream.WithoutPathPrefix = c.Val() upstream.WithoutPathPrefix = c.Val()
default:
return upstreams, c.Errf("unknown property '%s'", c.Val())
} }
} }