Files
addons/nginx_proxy/config.json
Franck Nijhof bf051c1b2d nginx_proxy: Collection of small improvements (#911)
* nginx_proxy: Prettier JSON & YAML files

* nginx_proxy: Sort build.json

* nginx_proxy: Update add-on URL

* nginx_proxy: Remove curl from Dockerfile, already in base

* nginx_proxy: Tweak documentation
2019-12-19 13:16:42 +01:00

41 lines
991 B
JSON

{
"name": "NGINX Home Assistant SSL proxy",
"version": "2.5",
"slug": "nginx_proxy",
"description": "An SSL/TLS proxy",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/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"
}