Adds manual blocklist option
This commit is contained in:
parent
aa0006f8e5
commit
f012551b96
@ -48,6 +48,7 @@ type configFileStruct struct {
|
|||||||
DomainListURLs []string `yaml:"domainListURLs"`
|
DomainListURLs []string `yaml:"domainListURLs"`
|
||||||
} `yaml:"sources"`
|
} `yaml:"sources"`
|
||||||
AllowLists []string `yaml:"allowList"`
|
AllowLists []string `yaml:"allowList"`
|
||||||
|
DenyList []string `yaml:"denyList"`
|
||||||
}
|
}
|
||||||
|
|
||||||
var config = configStructure{
|
var config = configStructure{
|
||||||
|
@ -52,6 +52,9 @@ func getListData() []string {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// append deny list items to list of blocked domains
|
||||||
|
badDomains = append(badDomains, config.Config.DenyList...)
|
||||||
|
|
||||||
return badDomains
|
return badDomains
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,3 +59,6 @@ allowList:
|
|||||||
- (^|\.)nexusrules\.officeapps\.live\.com
|
- (^|\.)nexusrules\.officeapps\.live\.com
|
||||||
- (^|\.)playfabapi\.com
|
- (^|\.)playfabapi\.com
|
||||||
- (^|\.)vercel-dns\.com
|
- (^|\.)vercel-dns\.com
|
||||||
|
denyList:
|
||||||
|
- jindlecleanings.xyz
|
||||||
|
- "*.jindlecleanings.xyz"
|
Loading…
x
Reference in New Issue
Block a user