fix nginx regex validation with pipe char
This commit is contained in:
parent
ada114315e
commit
d5e354c902
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ import (
|
|||
|
||||
const (
|
||||
alphaNumericChars = `\-\.\_\~a-zA-Z0-9/`
|
||||
regexEnabledChars = `\^\$\[\]\(\)\{\}\*\+`
|
||||
regexEnabledChars = `\^\$\[\]\(\)\{\}\*\+\|`
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
Loading…
Reference in a new issue