404 site views folder fix

This commit is contained in:
MrFry 2020-01-28 15:40:18 +01:00
parent da88bc0aa0
commit c1560a367d
5 changed files with 8 additions and 35 deletions

View file

@ -58,11 +58,11 @@ app.get('/', function (req, res) {
})
app.get('*', function (req, res) {
res.status(404).render('shared/404')
res.status(404).render('404')
})
app.post('*', function (req, res) {
res.status(404).render('shared/404')
res.status(404).render('404')
})
exports.app = app

View file

@ -289,7 +289,6 @@ app.post('/isAdding', function (req, res) {
})
app.get('/q', function (req, res) {
logger.LogReq(req)
if (Object.keys(req.query).length === 0) {
res.json({
message: `ask something! ?q=[question]&subj=[subject]&data=[question data]. 'subj' is optimal for faster result`,
@ -366,7 +365,6 @@ app.get('/infos', function (req, res) {
if (req.query.motd) {
result.motd = motd
}
logger.LogReq(req)
res.json(result)
})

View file

@ -87,11 +87,11 @@ app.route('/fosuploader').post(function (req, res, next) {
})
})
app.get('*', function (req, res) {
res.status(404).render('shared/404')
res.status(404).render('404')
})
app.post('*', function (req, res) {
res.status(404).render('shared/404')
res.status(404).render('404')
})
exports.app = app

View file

@ -197,11 +197,11 @@ app.get('/*', function (req, res) {
// -----------------------------------------------------------------------------------------------
app.get('*', function (req, res) {
res.status(404).render('shared/404')
res.status(404).render('404')
})
app.post('*', function (req, res) {
res.status(404).render('shared/404')
res.status(404).render('404')
})
exports.app = app

View file

@ -31,37 +31,12 @@ const http = require('http')
const https = require('https')
const extraModulesFile = './extraModules.json'
const modulesFile = './modules.json'
const loggableKeywords = [
'user.js'
]
let modules = {
qmining: {
path: './modules/qmining/qmining.js',
name: 'qmining',
urls: [ 'qmining.frylabs.net', 'localhost' ]
},
main: {
path: './modules/main/main.js',
name: 'main',
urls: [ 'frylabs.net', 'www.frylabs.net' ]
},
sio: {
path: './modules/sio/sio.js',
name: 'sio',
urls: [ 'sio.frylabs.net' ]
},
stuff: {
path: './modules/stuff/stuff.js',
name: 'stuff',
urls: [ 'stuff.frylabs.net' ]
},
old: {
path: './modules/old/old.js',
name: 'old',
urls: [ 'qmining.tk', 'www.qmining.tk' ]
}
}
let modules = JSON.parse(utils.ReadFile(modulesFile))
try {
if (utils.FileExists(extraModulesFile)) {