mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-08 14:44:20 +01:00
* 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
36 lines
785 B
JSON
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"
|
|
}
|