-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
71 lines (57 loc) · 2.14 KB
/
app.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
const bodyParser = require('body-parser');
const cluster = require('cluster');
const dotenv = require('dotenv');
const express = require('express');
const favicon = require('serve-favicon');
const http = require('http');
const mongoose = require('mongoose');
const path = require('path');
dotenv.config({ path: path.join(__dirname, '.env') });
const numCPUs = process.env.WEB_CONCURRENCY || require('os').cpus().length;
if (cluster.isMaster) {
console.log(`Master ${process.pid} is running`);
for (let i = 0; i < numCPUs; i++)
cluster.fork();
cluster.on('exit', (worker, code, signal) => {
console.log(`worker ${worker.process.pid} died`);
cluster.fork();
});
} else {
const app = express();
const server = http.createServer(app);
const MAX_SERVER_UPLOAD_LIMIT = 52428800;
const MAX_SERVER_PARAMETER_LIMIT = 50000;
const MONGODB_URI = process.env.MONGODB_URI || 'mongodb://127.0.0.1:27017/node101';
const PORT = process.env.PORT || 3000;
const URL = process.env.URL || 'http://localhost:3000';
const indexRouteController = require('./routes/indexRoute');
const subscribeRouteController = require('./routes/subscribeRoute');
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'pug');
mongoose.set('strictQuery', false);
mongoose.connect(MONGODB_URI, {
useNewUrlParser: true,
useUnifiedTopology: true
});
app.use(express.static(path.join(__dirname, 'public')));
app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(bodyParser.json({ limit: MAX_SERVER_UPLOAD_LIMIT }));
app.use(bodyParser.urlencoded({
extended: true,
limit: MAX_SERVER_UPLOAD_LIMIT,
parameter: MAX_SERVER_PARAMETER_LIMIT
}));
app.use((req, res, next) => {
res.locals.URL = URL;
if (!req.query || typeof req.query != 'object')
req.query = {};
if (!req.body || typeof req.body != 'object')
req.body = {};
next();
});
app.use('/', indexRouteController);
app.use('/subscribe', subscribeRouteController);
server.listen(PORT, () => {
console.log(`Server is on port ${PORT} as Worker ${cluster.worker.id} running @ process ${cluster.worker.process.pid}`);
});
}