From 8ebf60d84386fa68d2449882cd40991f1fdbb999 Mon Sep 17 00:00:00 2001 From: OKDaG <59088917+OKDaG@users.noreply.github.com> Date: Sat, 6 Jun 2026 12:20:38 +0200 Subject: [PATCH] fix: chown the correct index.html path (dist/browser) The Angular build output moved into a browser/ subfolder, so the index.html that Ombi rewrites for BASE_URL lives at dist/browser/index.html. Commit 32375bf reintroduced the pre-#124 path (dist/index.html) while adding the LSIO_READ_ONLY_FS guard, so the real file is never chowned to abc and Ombi cannot apply BASE_URL (blank page behind a subpath reverse proxy). Restore the browser/ path inside the read-only guard. Closes #126 --- root/etc/s6-overlay/s6-rc.d/init-ombi-config/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/init-ombi-config/run b/root/etc/s6-overlay/s6-rc.d/init-ombi-config/run index 2e5ba5b6..30d62754 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-ombi-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-ombi-config/run @@ -9,5 +9,5 @@ lsiown -R abc:abc \ /config if [[ -z ${LSIO_READ_ONLY_FS} ]]; then - lsiown abc:abc /app/ombi/ClientApp/dist/index.html + lsiown abc:abc /app/ombi/ClientApp/dist/browser/index.html fi