diff --git a/nginx_proxy/CHANGELOG.md b/nginx_proxy/CHANGELOG.md index 1d1ca29..e6a8001 100644 --- a/nginx_proxy/CHANGELOG.md +++ b/nginx_proxy/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 5.0.4 + +Fix startup debug config on/off inversion + ## 5.0.3 Make enabling startup debugging configurable diff --git a/nginx_proxy/config.json b/nginx_proxy/config.json index 539908e..1b5e053 100644 --- a/nginx_proxy/config.json +++ b/nginx_proxy/config.json @@ -1,6 +1,6 @@ { "name": "NGINX Home Assistant SSL proxy with WAF", - "version": "5.0.3", + "version": "5.0.4", "slug": "nginx_proxy_waf", "description": "An SSL/TLS proxy", "url": "https://github.com/jhampson-dbre/addon-nginx-proxy-waf", diff --git a/nginx_proxy/rootfs/run.sh b/nginx_proxy/rootfs/run.sh index f4eb625..727dfa2 100755 --- a/nginx_proxy/rootfs/run.sh +++ b/nginx_proxy/rootfs/run.sh @@ -8,7 +8,7 @@ set -e # so we toggle debug with a touch file instead. DEBUG_TOUCH_FILE=/share/nginx_proxy_waf.debug -if ! bashio::fs.file_exists "${DEBUG_TOUCH_FILE}"; then +if bashio::fs.file_exists "${DEBUG_TOUCH_FILE}"; then bashio::log.info "Addon startup debug is enabled..." set -x fi