Files
addons/nginx_proxy/config.json
Gianpiero 54afd77178 Update nginx.conf (#1082)
* Update nginx.conf

My propose is to use only TLS v1,2 and 1,3 with cipher suite recommended by https://wiki.mozilla.org/Security/Server_Side_TLS.

* Update using https://ssl-config.mozilla.org/

* Update Alpine 3.11

* Update config.json

* Update CHANGELOG.md

* Update run.sh

Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch>
2020-02-21 13:20:24 +01:00

41 lines
991 B
JSON

{
"name": "NGINX Home Assistant SSL proxy",
"version": "3.0",
"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"
}