fix: set default ROMM_BASE_URL in nginx startup log message

This commit is contained in:
zurdi
2025-05-23 00:11:12 +00:00
parent fb75715f06
commit 2aa6f1251b

View File

@@ -113,7 +113,9 @@ start_bin_nginx() {
# if container runs as root, drop permissions
nginx -g 'user romm;'
fi
info_log "🚀 RomM is now available at ${ROMM_BASE_URL}:8080"
: "${ROMM_BASE_URL:=http://0.0.0.0:8080}"
info_log "🚀 RomM is now available at ${ROMM_BASE_URL}"
}
# Commands to start valkey-server (handling PID creation internally)