aboutsummaryrefslogtreecommitdiffhomepage
path: root/server.js
diff options
context:
space:
mode:
authorJohannes Zellner <johannes@cloudron.io>2018-10-15 17:05:46 +0200
committerJohannes Zellner <johannes@cloudron.io>2018-10-15 17:05:46 +0200
commit4d8f08f9c825c35ed3e05ce92457c2fc2e2194c6 (patch)
treebacd7702228958b0c22efe55f51a526502b49a9e /server.js
parent459517d3c026aaa694be2be5f5b2f66a9df49399 (diff)
downloadSurfer-4d8f08f9c825c35ed3e05ce92457c2fc2e2194c6.tar.gz
Surfer-4d8f08f9c825c35ed3e05ce92457c2fc2e2194c6.tar.zst
Surfer-4d8f08f9c825c35ed3e05ce92457c2fc2e2194c6.zip
Corretly send 404 status codes
Diffstat (limited to 'server.js')
-rwxr-xr-xserver.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.js b/server.js
index 6206103..cc644e6 100755
--- a/server.js
+++ b/server.js
@@ -93,7 +93,7 @@ app.use('/', function welcomePage(req, res, next) {
93}); 93});
94app.use('/', function (req, res, next) { 94app.use('/', function (req, res, next) {
95 if (config.folderListingEnabled) return next(); 95 if (config.folderListingEnabled) return next();
96 res.sendFile(__dirname + '/frontend/404.html'); 96 res.status(404).sendFile(__dirname + '/frontend/404.html');
97}); 97});
98app.use('/', serveIndex(ROOT_FOLDER, { icons: true })); 98app.use('/', serveIndex(ROOT_FOLDER, { icons: true }));
99app.use(lastMile()); 99app.use(lastMile());