Simplify nginx run script by removing checks

Removed conditional check for nginx disabled state.
This commit is contained in:
Alexandre
2026-02-15 18:22:55 +01:00
committed by GitHub
parent 33dcc7ff09
commit f24a815f4f

View File

@@ -2,9 +2,4 @@
# shellcheck shell=bash
set -euo pipefail
if [ -f /run/nginx-disabled ]; then
bashio::log.info "Nginx disabled because ingress is not active"
exec sleep infinity
fi
nginx