Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/scrutiny/blame/commit/8c3afc31f4a02740a2aac0257afd50a7b0112731/rootfs/etc/cont-init.d/01-timezone You should set ROOT_URL correctly, otherwise the web may not work correctly.
scrutiny/rootfs/etc/cont-init.d/01-timezone

8 lines
144 B

#!/usr/bin/with-contenv bash
if [ -n "${TZ}" ]
then
ln -snf "/usr/share/zoneinfo/${TZ}" /etc/localtime
echo "${TZ}" > /etc/timezone
fi