Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/commit/d2c8451d111aeff746bf43ccf394082638ec03e6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
3 deletions
@ -1 +1 @@
Subproject commit 72edf800750e0453b47d5f08b03e395dc6ef4209
Subproject commit 43c8082e78d01d26f2e6c944e73bca67bb1d5197
@ -4,7 +4,7 @@ const animals = fs.readFileSync('./generators/gfycat/animals.txt').toString().sp
// Don't trigger circular dependency during setup
if ( ! require . main . filename . includes ( 'setup.js' ) )
var MIN _LENGTH = require ( '../setup' ) . gfyIdSize ;
var MIN _LENGTH = require ( '../setup' ) . gfyIdSize ; // skipcq: JS-0239, JS-0102
function getWord ( list , delim = '' ) {
return list [ Math . floor ( Math . random ( ) * list . length ) ] . concat ( delim ) ;
@ -11,7 +11,7 @@ const { HTTP, HTTPS, KILOBYTES } = require('./MagicNumbers.json');
// Catch config.json not existing when running setup script
try {
var { useSsl , port , domain , isProxied , diskFilePath , saveWithDate , s3bucket , s3endpoint } = require ( './config.json' ) ;
var { useSsl , port , domain , isProxied , diskFilePath , saveWithDate , s3bucket , s3endpoint } = require ( './config.json' ) ; // skipcq: JS-0239, JS-0102
} catch ( ex ) {
if ( ex . code !== 'MODULE_NOT_FOUND' ) console . log ( ex ) ;
}