Files
addons/duckdns/config.json
tux2000 fb3919fc31 Add option for SSL cert algorithm in DuckDNS addon (#2189)
* Add option for SSL cert algorithm in DuckDNS addon

* Documentation

* Apply suggestions from code review

Co-authored-by: Joakim Sørensen <hi@ludeeus.dev>

* Update CHANGELOG

* Apply suggestions from code review

Co-authored-by: Joakim Sørensen <hi@ludeeus.dev>
Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch>
2021-09-27 12:19:23 +02:00

40 lines
1007 B
JSON

{
"name": "Duck DNS",
"version": "1.14.0",
"slug": "duckdns",
"description": "Free Dynamic DNS (DynDNS or DDNS) service with Let's Encrypt support",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/duckdns",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "services",
"map": ["ssl:rw"],
"options": {
"lets_encrypt": {
"accept_terms": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"algo": "secp384r1"
},
"token": null,
"domains": [null],
"aliases": [],
"seconds": 300
},
"schema": {
"lets_encrypt": {
"accept_terms": "bool",
"certfile": "str",
"keyfile": "str",
"algo": "list(rsa|prime256v1|secp384r1)"
},
"ipv4": "str?",
"ipv6": "str?",
"token": "str",
"domains": ["match(.+\\.duckdns\\.org)"],
"aliases": [
{"domain": "str", "alias": "str"}
],
"seconds": "int"
},
"image": "homeassistant/{arch}-addon-duckdns"
}