feat(webserver): Add another 404 page

This commit is contained in:
Sören Beye 2025-10-10 19:03:53 +02:00
parent c3609fc199
commit 64b0ee01fe
2 changed files with 102 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@ -2,6 +2,7 @@ const fs = require("fs");
const path = require("path");
module.exports = {
gugl: fs.readFileSync(path.join(__dirname, "gugl.html")).toString(),
iis: fs.readFileSync(path.join(__dirname, "iis.html")).toString(),
oracle: fs.readFileSync(path.join(__dirname, "oracle.html")).toString(),
tomcat: fs.readFileSync(path.join(__dirname, "tomcat.html")).toString()