diff options
| author | kanadeko <[email protected]> | 2017-01-17 15:55:27 -0300 |
|---|---|---|
| committer | kanadeko <[email protected]> | 2017-01-17 15:55:27 -0300 |
| commit | 54e73085c68804e83b8a72ae1cb9a9982eaddb06 (patch) | |
| tree | cd2c599f03c0a55cd04d367bdfff3044df50f5ba | |
| parent | token handling and verification (diff) | |
| download | host.fuwn.me-54e73085c68804e83b8a72ae1cb9a9982eaddb06.tar.xz host.fuwn.me-54e73085c68804e83b8a72ae1cb9a9982eaddb06.zip | |
Removed extra routes, moved static to main file
| -rw-r--r-- | lolisafe.js | 16 | ||||
| -rw-r--r-- | pages/error/404.html (renamed from public/error/404.html) | 0 | ||||
| -rw-r--r-- | routes/routes.js | 36 |
3 files changed, 13 insertions, 39 deletions
diff --git a/lolisafe.js b/lolisafe.js index 082ccef..fffe9a7 100644 --- a/lolisafe.js +++ b/lolisafe.js @@ -1,6 +1,5 @@ const config = require('./config.js') const api = require('./routes/api.js') -const routes = require('./routes/routes.js') const express = require('express') const db = require('knex')(config.database) const fs = require('fs') @@ -19,12 +18,23 @@ if( prefix !== '' ) safe.use('/' + prefix, express.static('./uploads')) safe.use('/', express.static('./public')) -safe.use('/', routes) safe.use('/api', api) +safe.get('/', function (req, res, next) { + res.sendFile('home.html', { + root: './pages/' + }) +}) + +safe.get('/panel', function (req, res, next) { + res.sendFile('panel.html', { + root: './pages/' + }) +}) + safe.use(function (req, res, next) { res.status(404).sendFile('404.html', { - root: './public/error/', + root: './pages/error/', }) }) diff --git a/public/error/404.html b/pages/error/404.html index 1853f21..1853f21 100644 --- a/public/error/404.html +++ b/pages/error/404.html diff --git a/routes/routes.js b/routes/routes.js deleted file mode 100644 index c849335..0000000 --- a/routes/routes.js +++ /dev/null @@ -1,36 +0,0 @@ -const config = require('../config.js') -const routes = require('express').Router() -const path = require('path') - -let options = { - root: 'pages/', - dotfiles: 'deny', - headers: { - 'x-timestamp': Date.now(), - 'x-sent': true - } -} - -routes.get('/', (req, res) => { - - res.sendFile('home.html', options, function (err) { - if (err) { - console.log(err) - res.status(err.status).end() - } - }) - -}) - -routes.get('/panel', function (req, res, next) { - - res.sendFile('panel.html', options, function (err) { - if (err) { - console.log(err) - res.status(err.status).end() - } - }) - -}) - -module.exports = routes
\ No newline at end of file |