Files
addons/letsencrypt/config.json
Pascal Vizeli 225a5566be Make let's encrypt more robust (#95)
Robust lesencrypt
2017-05-24 11:26:50 +02:00

28 lines
591 B
JSON

{
"name": "Let's Encrypt",
"version": "0.9",
"slug": "letsencrypt",
"description": "Manage Let's Encrypt certificate",
"url": "https://home-assistant.io/addons/lets_encrypt/",
"startup": "once",
"boot": "manual",
"ports": {
"80/tcp": 80,
"443/tcp": 443
},
"map": ["ssl:rw"],
"options": {
"email": null,
"domains": [null],
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"email": "email",
"domains": ["str"],
"certfile": "str",
"keyfile": "str"
},
"image": "homeassistant/{arch}-addon-letsencrypt"
}