Files
addons/nginx_proxy/config.json
Ville Skyttä e5078a7929 nginx_proxy: Include /ssl/nginx_proxy/<domain>*.conf in nginx.conf (#259)
* nginx_proxy: Allow customization with included config files from /share

Provides a way to add additional configuration to the default, for
example proxy_pass locations before the default root location, as well
as additional complete server configs.

* nginx_proxy: Run logo.png through zopflipng -m

* nginx_proxy: Bump version to 1.0, add CHANGELOG.md

* Update CHANGELOG.md
2018-03-10 00:46:12 +01:00

36 lines
785 B
JSON

{
"name": "NGINX Home Assistant SSL proxy",
"version": "1.0",
"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",
"customize": {
"active": false,
"default": "nginx_proxy_default*.conf",
"servers": "nginx_proxy/*.conf"
}
},
"schema": {
"domain": "str",
"certfile": "str",
"keyfile": "str",
"customize": {
"active": "bool",
"default": "str",
"servers": "str"
}
},
"image": "homeassistant/{arch}-addon-nginx_proxy"
}