mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-08 15:54:21 +01:00
26 lines
475 B
JSON
26 lines
475 B
JSON
{
|
|
"name": "Let's Encrypt",
|
|
"version": "0.2",
|
|
"slug": "letsencrypt",
|
|
"description": "Manage let's encrypt certificate",
|
|
"startup": "once",
|
|
"boot": "manual",
|
|
"ports": {
|
|
"80/tcp": 80,
|
|
"443/tcp": 443
|
|
},
|
|
"map": ["ssl"],
|
|
"options": {
|
|
"email": null,
|
|
"domains": [null],
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem"
|
|
},
|
|
"schema": {
|
|
"email": "email",
|
|
"domain": ["str"],
|
|
"certfile": "str",
|
|
"keyfile": "str"
|
|
}
|
|
}
|