mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-01 12:24:19 +01:00
28 lines
591 B
JSON
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"
|
|
}
|