blob: 15f97cbf57e3563e9b2c5d731fd0a43f635631c8 (
plain)
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
|
[EXAMPLES]
A basic configuration is shown below.
{
"monitor": [
{
"bootstrap_at": "2024-05-16T00:00:00Z",
"wildcard": "example.org",
"excludes": [
"test"
]
}
],
"nodes": [
{
"name": "example.org",
"secret": "sikritpassword",
"url": "https://www.example.org/silent-ct/allowlist",
"issues": [
"example.org",
"www.example.org"
]
}
]
}
Bootstrap a new monitor in a non-existent directory:
.B $ silentct-mon -b -c ~/.config/silent-ct/config.json -d ~/.local/lib/silent-ct
Run the monitor continuously:
.B $ silentct-mon -c ~/.config/silent-ct/config.json -d ~/.local/lib/silent-ct
Use
.B -v DEBUG
to see what's happening underneath the hood.
|