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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
// The name of the daemon, used for logging and debugging
// purposes.
"name": "name",
// The directory where the daemon stores non-essential
// runtime files and other file objects (sockets, etc.).
//
// # Multiple Daemon Support
//
// This directory should be unique for each instance of the
// daemon.
//
// # Example
//
// For example, this could be `/var/run/aranya`.
//
// See also: systemd `RuntimeDirectory=` and
// `$XDG_RUNTIME_DIR`.
"runtime_dir": "/var/run/aranya",
// The directory where the daemon stores non-portable data
// that should persist between application restarts.
//
// # Multiple Daemon Support
//
// This directory should be unique for each instance of the
// daemon.
//
// # Example
//
// For example, this could be `/var/lib/aranya`.
//
// See also: systemd `StateDirectory=` and
// `$XDG_STATE_HOME`.
"state_dir": "/var/lib/aranya",
// The directory where the daemon stores non-essential data
// files.
//
// # Multiple Daemon Support
//
// This directory should be unique for each instance of the
// daemon.
//
// # Example
//
// For example, this could be `/var/cache/aranya`.
//
// See also: systemd `CacheDirectory=` and
// `$XDG_CACHE_HOME`.
"cache_dir": "/var/cache/aranya",
// The directory where the daemon writes log files.
//
// # Multiple Daemon Support
//
// This directory should be unique for each instance of the
// daemon.
//
// # Example
//
// For example, this could be `/var/log/aranya`.
//
// See also: systemd `LogsDirectory=`.
"logs_dir": "/var/log/aranya",
// The directory where the daemon can find additional
// configuration files.
//
// # Multiple Daemon Support
//
// This directory should be unique for each instance of the
// daemon.
//
// # Example
//
// For example, this could be `/etc/aranya`.
//
// See also: systemd `ConfigDirectory=` and
// `$XDG_CONFIG_HOME`.
"config_dir": "/etc/aranya",
// Aranya sync server address.
"sync_addr": "0.0.0.0:4321",
"quic_sync": {},
}