⬆️ Updating add-on Nginx Proxy Manager to 7451a24

This commit is contained in:
Community Hass.io Add-ons Bot 2020-09-23 18:22:31 +00:00
parent 5f42fcad46
commit b07352bf1a
5 changed files with 19 additions and 7 deletions

View file

@ -1,4 +1,7 @@
# Changelog since v0.6.0
- ⬆ Upgrades nodejs to 12.18.4-r0
- ✨ Add option to reset database (#104)
- ⬆ Upgrades add-on base image to v8.0.3
- 🚑 Add Python2 to satisfy node-gyp
- 🚑 Bump to Python3
- ✨ Add certbot-dns-cloudflare

View file

@ -60,6 +60,14 @@ more severe level, e.g., `debug` also shows `info` messages. By default,
the `log_level` is set to `info`, which is the recommended setting unless
you are troubleshooting.
### Option: `reset_database`
By setting to `true` provides the option to delete and recreate the database. As
the data is held within the MariaDB addon, it is not removed on an uninstall.
**Note**: _Once the database is reset the configuration for the addon will be
cleared automatically_
## Known issues and limitations
- The original NGinx Proxy Manager has support for forwarding TCP/UDP streams,

View file

@ -57,6 +57,6 @@ If you are more interested in stable releases of our add-ons:
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-fb3cfd5-blue.svg
[release]: https://github.com/hassio-addons/addon-nginx-proxy-manager/tree/fb3cfd5
[release-shield]: https://img.shields.io/badge/version-7451a24-blue.svg
[release]: https://github.com/hassio-addons/addon-nginx-proxy-manager/tree/7451a24
[screenshot]: https://github.com/hassio-addons/addon-nginx-proxy-manager/raw/master/images/screenshot.gif

View file

@ -1,6 +1,6 @@
{
"name": "Nginx Proxy Manager",
"version": "fb3cfd5",
"version": "7451a24",
"slug": "nginxproxymanager",
"description": "Manage Nginx proxy hosts with a simple, powerful interface",
"url": "https://github.com/hassio-addons/addon-nginx-proxy-manager",
@ -36,7 +36,8 @@
],
"options": {},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?"
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"reset_database": "bool?"
},
"image": "hassioaddons/nginxproxymanager-{arch}"
}