fix: clean request path before acls (#1055)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Stavros
2026-07-30 19:35:31 +03:00
committed by GitHub
parent cbd92a1104
commit 6d5563db2c
5 changed files with 192 additions and 5 deletions
+2 -2
View File
@@ -332,6 +332,6 @@ type AppBasicAuth struct {
}
type AppPath struct {
Allow string `description:"Comma-separated list of allowed paths." yaml:"allow,omitempty"`
Block string `description:"Comma-separated list of blocked paths." yaml:"block,omitempty"`
Allow string `description:"Disable authentication for only paths that match the regex string." yaml:"allow,omitempty"`
Block string `description:"Enable authentication for only paths that match the regex string." yaml:"block,omitempty"`
}