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