mirror of https://github.com/caddyserver/caddy.git
This commit is contained in:
parent
f4840cfeb8
commit
654a3bb090
|
@ -456,8 +456,7 @@ func (m MatchPath) Match(r *http.Request) bool {
|
||||||
// treat it as a fast substring match
|
// treat it as a fast substring match
|
||||||
if strings.Count(matchPattern, "*") == 2 &&
|
if strings.Count(matchPattern, "*") == 2 &&
|
||||||
strings.HasPrefix(matchPattern, "*") &&
|
strings.HasPrefix(matchPattern, "*") &&
|
||||||
strings.HasSuffix(matchPattern, "*") &&
|
strings.HasSuffix(matchPattern, "*") {
|
||||||
strings.Count(matchPattern, "*") == 2 {
|
|
||||||
if strings.Contains(reqPathForPattern, matchPattern[1:len(matchPattern)-1]) {
|
if strings.Contains(reqPathForPattern, matchPattern[1:len(matchPattern)-1]) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue