forked from koying/ha-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
37 lines (37 loc) · 855 Bytes
/
config.json
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
{
"init": "false",
"name": "Dynu DNS",
"version": "1.0.0",
"slug": "dynudns",
"description": "Free Dynamic DNS via Dynu with Let's Encrypt support",
"url": "https://github.com/koying/ha-addons/tree/main/dynudns-addon",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "services",
"map": ["ssl:rw"],
"options": {
"lets_encrypt": {
"accept_terms": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"token": null,
"domains": [null],
"aliases": [],
"seconds": 300
},
"schema": {
"lets_encrypt": {
"accept_terms": "bool",
"certfile": "str",
"keyfile": "str"
},
"ipv4": "str?",
"ipv6": "str?",
"token": "str",
"domains": ["str"],
"aliases": [
{"domain": "str", "alias": "str"}
],
"seconds": "int"
}
}