1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
"config": [
{
".name": "config",
".type": "config",
"enabled": "1",
"dns": "dnsmasq.servers",
"verbosity": "2",
"force_dns": "0",
"compressed_cache": "0",
"config_update_enabled": "0",
"ipv6_enabled": "0",
"canary_domains_icloud": "0",
"canary_domains_mozilla": "0",
"dnsmasq_sanity_check": "0",
"dnsmasq_validity_check": "0",
"parallel_downloads": "0",
"allow_non_ascii": "0",
"update_config_sizes": "0",
"heartbeat_domain": "-",
"download_timeout": "10",
"pause_timeout": "20",
"curl_retry": "1",
"compressed_cache_dir": "TESTDIR/cache"
}
],
"file_url": [
{
".name": "blocked_domains",
".type": "file_url",
"enabled": "1",
"url": "file://TESTDIR/data/domains.txt",
"action": "block",
"name": "Test Domains"
},
{
".name": "blocked_hosts",
".type": "file_url",
"enabled": "1",
"url": "file://TESTDIR/data/hosts.txt",
"action": "block",
"name": "Test Hosts"
}
]
}
|