mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-19 14:14:21 +01:00
* Add support for longer domain names in nginx_proxy Fixes #243 * Update nginx.conf * update changelog * bump nginx_proxy to version 1.2
38 lines
855 B
JSON
38 lines
855 B
JSON
{
|
|
"name": "NGINX Home Assistant SSL proxy",
|
|
"version": "1.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"
|
|
}
|