Files
addons/nginx_proxy/config.json
Pascal Vizeli 95a9ff737c Update Nginx (#445)
* Update Nginx

* Update Dockerfile

* Update config.json
2018-11-05 21:13:42 +01:00

38 lines
853 B
JSON

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