mirror of
https://github.com/caddyserver/caddy.git
synced 2025-11-16 11:17:46 +08:00
rewrite: Avoid panic on bad arg count for uri (#6571)
This commit is contained in:
@@ -106,7 +106,7 @@ func parseCaddyfileURI(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, err
|
|||||||
|
|
||||||
switch args[0] {
|
switch args[0] {
|
||||||
case "strip_prefix":
|
case "strip_prefix":
|
||||||
if len(args) > 2 {
|
if len(args) != 2 {
|
||||||
return nil, h.ArgErr()
|
return nil, h.ArgErr()
|
||||||
}
|
}
|
||||||
rewr.StripPathPrefix = args[1]
|
rewr.StripPathPrefix = args[1]
|
||||||
@@ -115,7 +115,7 @@ func parseCaddyfileURI(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, err
|
|||||||
}
|
}
|
||||||
|
|
||||||
case "strip_suffix":
|
case "strip_suffix":
|
||||||
if len(args) > 2 {
|
if len(args) != 2 {
|
||||||
return nil, h.ArgErr()
|
return nil, h.ArgErr()
|
||||||
}
|
}
|
||||||
rewr.StripPathSuffix = args[1]
|
rewr.StripPathSuffix = args[1]
|
||||||
|
|||||||
Reference in New Issue
Block a user