Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/commit/c188a7dacd87c9213b89b7a6e148a298a24a16b6 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed setup flow

pull/62/head
tycrek 4 years ago
parent 589c85d7e5
commit c188a7dacd
No known key found for this signature in database
GPG Key ID: 25D74F3943625263

@ -9,7 +9,11 @@ try {
}
// Run first time setup if using Docker (pseudo-process, setup will be run with docker exec)
if (doSetup) doSetup();
if (doSetup) {
doSetup();
// @ts-ignore
return;
}
// Load the config
const { host, port, useSsl, isProxied, s3enabled, frontendName, indexFile } = require('../config.json');

Loading…
Cancel
Save