mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-27 22:23:48 +03:00
httpcaddyfile: Disallow args on route/handle directive family (#3740)
This commit is contained in:
parent
b1d456d8ab
commit
fe27f9cf0c
1 changed files with 5 additions and 0 deletions
|
@ -285,6 +285,11 @@ func parseSegmentAsConfig(h Helper) ([]ConfigValue, error) {
|
||||||
var allResults []ConfigValue
|
var allResults []ConfigValue
|
||||||
|
|
||||||
for h.Next() {
|
for h.Next() {
|
||||||
|
// don't allow non-matcher args on the first line
|
||||||
|
if h.NextArg() {
|
||||||
|
return nil, h.ArgErr()
|
||||||
|
}
|
||||||
|
|
||||||
// slice the linear list of tokens into top-level segments
|
// slice the linear list of tokens into top-level segments
|
||||||
var segments []caddyfile.Segment
|
var segments []caddyfile.Segment
|
||||||
for nesting := h.Nesting(); h.NextBlock(nesting); {
|
for nesting := h.Nesting(); h.NextBlock(nesting); {
|
||||||
|
|
Loading…
Reference in a new issue