forked from UseInterstellar/Interstellar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
104 lines (90 loc) · 2.56 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import cluster from "cluster";
import os from "os";
import express from "express";
import http from "node:http";
import createBareServer from "@tomphttp/bare-server-node";
import path from "node:path";
import * as dotenv from "dotenv";
dotenv.config();
const __dirname = process.cwd();
// Increase max sockets to 1000
http.globalAgent.maxSockets = 1000;
if (cluster.isMaster) {
const numCPUs = os.cpus().length;
console.log(`Master process running with PID ${process.pid}`);
// Fork worker processes
for (let i = 0; i < numCPUs; i++) {
cluster.fork();
}
// Handle worker exit events
cluster.on("exit", (worker, code, signal) => {
console.log(
`Worker ${worker.process.pid} died with code ${code} and signal ${signal}`
);
console.log("Forking a new worker...");
cluster.fork();
});
} else {
const server = http.createServer();
const app = express(server);
const bareServer = createBareServer("/bare/");
// Serve static files with caching
const staticOptions = {
maxAge: "1d",
setHeaders: (res, path) => {
if (path.endsWith(".html")) {
res.setHeader("Cache-Control", "no-cache");
} else {
res.setHeader("Cache-Control", "public, max-age=86400");
}
},
};
app.use(express.static(path.join(__dirname, "static"), staticOptions));
app.use(express.json());
app.use(
express.urlencoded({
extended: true,
})
);
// Define routes
const routes = [
{ path: "/", file: "index.html" },
{ path: "/photos", file: "photos.html" },
{ path: "/play", file: "play.html" },
{ path: "/apps", file: "apps.html" },
{ path: "/chat", file: "chat.html" },
{ path: "/go", file: "go.html" },
{ path: "/settings", file: "settings.html" },
{ path: "/donate", file: "donate.html" },
{ path: "/404", file: "404.html" },
];
// Define routes using the routes array
routes.forEach((route) => {
app.get(route.path, (req, res) => {
res.sendFile(path.join(__dirname, "static", route.file));
});
});
// Catch-all route
app.get("/*", (req, res) => {
res.redirect("/404");
});
// Bare Server
server.on("request", (req, res) => {
if (bareServer.shouldRoute(req)) {
bareServer.routeRequest(req, res);
} else {
app(req, res);
}
});
server.on("upgrade", (req, socket, head) => {
if (bareServer.shouldRoute(req)) {
bareServer.routeUpgrade(req, socket, head);
} else {
socket.end();
}
});
server.listen({
port: process.env.PORT,
});
console.log(`Worker process running with PID ${process.pid}`);
}