12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "enableBlocking": true,
- "blockListUrlUpdateIntervalHours": 24,
- "localEndPointGroupMap": {
- "127.0.0.1": "bypass",
- "192.168.10.2:53": "bypass",
- "user1.dot.example.com": "kids",
- "user2.doh.example.com:443": "bypass"
- },
- "networkGroupMap": {
- "192.168.10.20": "kids",
- "0.0.0.0/0": "everyone",
- "[::]/0": "everyone"
- },
- "groups": [
- {
- "name": "everyone",
- "enableBlocking": true,
- "allowTxtBlockingReport": true,
- "blockAsNxDomain": true,
- "blockingAddresses": [
- "0.0.0.0",
- "::"
- ],
- "allowed": [],
- "blocked": [
- "example.com"
- ],
- "allowListUrls": [],
- "blockListUrls": [
- "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"
- ],
- "allowedRegex": [],
- "blockedRegex": [
- "^ads\\."
- ],
- "regexAllowListUrls": [],
- "regexBlockListUrls": [],
- "adblockListUrls": []
- },
- {
- "name": "kids",
- "enableBlocking": true,
- "allowTxtBlockingReport": true,
- "blockAsNxDomain": true,
- "blockingAddresses": [
- "0.0.0.0",
- "::"
- ],
- "allowed": [],
- "blocked": [],
- "allowListUrls": [],
- "blockListUrls": [
- {
- "url": "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts",
- "blockAsNxDomain": false,
- "blockingAddresses": [
- "192.168.10.2"
- ]
- }
- ],
- "allowedRegex": [],
- "blockedRegex": [],
- "regexAllowListUrls": [],
- "regexBlockListUrls": [],
- "adblockListUrls": []
- },
- {
- "name": "bypass",
- "enableBlocking": true,
- "allowTxtBlockingReport": true,
- "blockAsNxDomain": true,
- "blockingAddresses": [
- "0.0.0.0",
- "::"
- ],
- "allowed": [],
- "blocked": [],
- "allowListUrls": [],
- "blockListUrls": [],
- "allowedRegex": [],
- "blockedRegex": [],
- "regexAllowListUrls": [],
- "regexBlockListUrls": [],
- "adblockListUrls": []
- }
- ]
- }
|