mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-01 19:25:32 +01:00
* Update nginx_proxy add-on to use Bashio Closes #731 * Fixing shellcheck issues. * Rev version number * Use bashio::config.true where needed
41 lines
966 B
JSON
41 lines
966 B
JSON
{
|
|
"name": "NGINX Home Assistant SSL proxy",
|
|
"version": "2.5",
|
|
"slug": "nginx_proxy",
|
|
"description": "An SSL/TLS proxy",
|
|
"url": "https://home-assistant.io/addons/nginx_proxy/",
|
|
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
|
"startup": "application",
|
|
"boot": "auto",
|
|
"ports": {
|
|
"80/tcp": null,
|
|
"443/tcp": 443
|
|
},
|
|
"map": ["ssl", "share"],
|
|
"options": {
|
|
"domain": null,
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem",
|
|
"hsts": "max-age=31536000; includeSubDomains",
|
|
"cloudflare": false,
|
|
"customize": {
|
|
"active": false,
|
|
"default": "nginx_proxy_default*.conf",
|
|
"servers": "nginx_proxy/*.conf"
|
|
}
|
|
},
|
|
"schema": {
|
|
"domain": "str",
|
|
"certfile": "str",
|
|
"keyfile": "str",
|
|
"hsts": "str",
|
|
"cloudflare": "bool",
|
|
"customize": {
|
|
"active": "bool",
|
|
"default": "str",
|
|
"servers": "str"
|
|
}
|
|
},
|
|
"image": "homeassistant/{arch}-addon-nginx_proxy"
|
|
}
|