Files
addons/nginx_proxy/config.json
Ville Skyttä 25f9097e22 nginx_proxy: Update run.sh info messages, make HSTS configurable and optional (#264)
* nginx_proxy: Update run.sh info messages

In particular, note that generating dhparams will take some time.

* nginx_proxy: Bump version to 1.1

* nginx_proxy: Make HSTS configurable and optional

Unconditional HSTS breaks unencrypted connections to non-standard HTTP
ports on the same hostname. These ports be e.g. mapped outside of
hassio/nginx, and this can not be always circumvented by proxying them
beind nginx, because not all services behave properly behind a reverse
proxy.

Additionally, the unconditional HSTS includeSubDomains setting
hardcodes assumptions about subdomains that hassio does not
necessarily deal with at all.

* fix style
2018-03-25 23:57:01 +02:00

38 lines
855 B
JSON

{
"name": "NGINX Home Assistant SSL proxy",
"version": "1.1",
"slug": "nginx_proxy",
"description": "An SSL/TLS proxy",
"url": "https://home-assistant.io/addons/nginx_proxy/",
"startup": "application",
"boot": "auto",
"ports": {
"80/tcp": 80,
"443/tcp": 443
},
"map": ["ssl", "share"],
"options": {
"domain": null,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"hsts": "max-age=31536000; includeSubDomains",
"customize": {
"active": false,
"default": "nginx_proxy_default*.conf",
"servers": "nginx_proxy/*.conf"
}
},
"schema": {
"domain": "str",
"certfile": "str",
"keyfile": "str",
"hsts": "str",
"customize": {
"active": "bool",
"default": "str",
"servers": "str"
}
},
"image": "homeassistant/{arch}-addon-nginx_proxy"
}