Files
addons/duckdns/config.json
Paulus Schoutsen 54b8289e08 DuckDNS: Also generate a certificate with Let's Encrypt (0 config) (#181)
* Initial Let's Encrypt + DuckDNS

* Remove letsencrypt_duckdns

* Add cert generation with lets encrypt to DuckDNS

* Add that you have to accept terms

* Update Dockerfile

* Delete dehydrated.sh

* Update Dockerfile

* Update config.json

* Update run.sh

* Update hooks.sh

* Update run.sh

* Update hooks.sh

* Update run.sh

* Update config.json

* Update hooks.sh

* Update Dockerfile

* Update run.sh

* fix renew timer

* Update run.sh

* fix logic
2017-09-26 17:02:03 +02:00

32 lines
691 B
JSON

{
"name": "Duck DNS",
"version": "1.0",
"slug": "duckdns",
"description": "Free Dynamic DNS (DynDNS or DDNS) service",
"url": "https://home-assistant.io/addons/duckdns/",
"startup": "services",
"boot": "auto",
"map": ["ssl:rw"],
"options": {
"lets_encrypt": {
"accept_terms": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"token": null,
"domains": [null],
"seconds": 300
},
"schema": {
"lets_encrypt": {
"accept_terms": "bool",
"certfile": "str",
"keyfile": "str"
},
"token": "str",
"domains": ["str"],
"seconds": "int"
},
"image": "homeassistant/{arch}-addon-duckdns"
}