From 1a44fa92215d0c7f0d46127ae9ec97b4697b2503 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 16 Jun 2026 21:51:52 +0200 Subject: [PATCH] Keep nginx backgrounded during wger startup --- wger/rootfs/etc/cont-init.d/90-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wger/rootfs/etc/cont-init.d/90-run.sh b/wger/rootfs/etc/cont-init.d/90-run.sh index 4f7d93eeb4..c4bef22433 100755 --- a/wger/rootfs/etc/cont-init.d/90-run.sh +++ b/wger/rootfs/etc/cont-init.d/90-run.sh @@ -106,7 +106,7 @@ mkdir -p /run/nginx /var/log/nginx if [ -f /run/nginx.pid ] && kill -0 "$(cat /run/nginx.pid)" 2> /dev/null; then bashio::log.info "nginx is already running" elif nginx -t; then - nginx + nginx & else bashio::log.error "nginx configuration test failed" exit 1