Adds manual blocklist option

This commit is contained in:
Hyatt 2022-03-17 16:55:48 -05:00
parent aa0006f8e5
commit f012551b96
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
3 changed files with 8 additions and 1 deletions

View File

@ -48,6 +48,7 @@ type configFileStruct struct {
DomainListURLs []string `yaml:"domainListURLs"`
} `yaml:"sources"`
AllowLists []string `yaml:"allowList"`
DenyList []string `yaml:"denyList"`
}
var config = configStructure{

View File

@ -52,6 +52,9 @@ func getListData() []string {
}
}
// append deny list items to list of blocked domains
badDomains = append(badDomains, config.Config.DenyList...)
return badDomains
}

View File

@ -58,4 +58,7 @@ allowList:
- (^|\.)msn\.com
- (^|\.)nexusrules\.officeapps\.live\.com
- (^|\.)playfabapi\.com
- (^|\.)vercel-dns\.com
- (^|\.)vercel-dns\.com
denyList:
- jindlecleanings.xyz
- "*.jindlecleanings.xyz"