fix: wrong config file name

This commit is contained in:
Roi Feng
2025-05-27 16:21:57 -04:00
parent d47938ba22
commit 6c340966a1

View File

@ -123,7 +123,7 @@ func LoadRules(rulePath string) (*RuleSet, error) {
return nil, err
}
YAMLFile := filepath.Join(rulePath, "server.yml")
YAMLFile := filepath.Join(rulePath, "Server.yml")
set, err := loadServerRules(YAMLFile, rs)
if err != nil {
return set, err