]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/commitdiff
Corretly send 404 status codes
authorJohannes Zellner <johannes@cloudron.io>
Mon, 15 Oct 2018 15:05:46 +0000 (17:05 +0200)
committerJohannes Zellner <johannes@cloudron.io>
Mon, 15 Oct 2018 15:05:46 +0000 (17:05 +0200)
CHANGELOG
server.js

index 397650d999939bb3ad47262389623bd52e8600c0..f618691ca2f9670a7b6eae7d70dc6b61d645bbff 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -74,4 +74,6 @@
 * Minor interface improvements
 
 [5.4.0]
-* Use new Cloudron base image
\ No newline at end of file
+* Use new Cloudron base image
+* Send 404 status code correctly
+
index 620610357e09b4e62c1ee281af4a10116285433e..cc644e6b3a90791109cffae9b4a5078231dc0e18 100755 (executable)
--- a/server.js
+++ b/server.js
@@ -93,7 +93,7 @@ app.use('/', function welcomePage(req, res, next) {
 });
 app.use('/', function (req, res, next) {
     if (config.folderListingEnabled) return next();
-    res.sendFile(__dirname + '/frontend/404.html');
+    res.status(404).sendFile(__dirname + '/frontend/404.html');
 });
 app.use('/', serveIndex(ROOT_FOLDER, { icons: true }));
 app.use(lastMile());