-
Notifications
You must be signed in to change notification settings - Fork 1
/
mirrorselect.dev.toml
47 lines (34 loc) · 1.1 KB
/
mirrorselect.dev.toml
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
46
47
#
# DragonFly pkg mirrorselect
#
# Uncomment to turn on debug
debug = true
listen = "127.0.0.1:3130"
# File containing the mirrors (path relative to this file)
mirror_list = "mirrors.dev.toml"
# Type of the following MaxMind database file
# (choices: dbip, maxmind)
mmdb_type = "dbip"
# MaxMind database file (path relative to this file)
mmdb_file = "dbip-city-lite.mmdb"
#
# Settings for mirror monitor
#
[monitor]
# Number of workers in the monitor pool (default: 10)
workers = 5
# Wait interval before starting the next monitor round (unit: second)
interval = 30
# Timeout set for requesting mirrors (unit: second)
timeout = 5
# Number of consecutive opposite status before flipping mirror's status
hysteresis = 3
# Whether to verify the server's certificate? (default: true)
tls_verify = false
# Custom User-Agent header (default: mirrorselect/<version>)
#user_agent = "customized user-agent string ..."
# Executable to invoke when a mirror is down/up
# The command to run is: $notify_exec <mirror_name> <DOWN|UP>
notify_exec = "echo"
# Timeout for executing the above command (unit: second)
exec_timeout = 2