-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.js
67 lines (50 loc) · 1.37 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
'use strict';
const express = require('express');
const session = require('express-session');
const path = require('path');
const { SESSION_SECRET } = process.env;
if (!SESSION_SECRET) {
console.error('SESSION_SECRET is not set!');
process.exit(1);
}
const index = require('./routes/index');
const app = express();
if (app.get('env') === 'production') {
// Redirect to HTTPS if called with HTTP
app.use((req, res, next) => {
const xForwardedProtoHeader = req.headers['x-forwarded-proto'];
if (xForwardedProtoHeader != 'https') {
res.redirect(`https://${req.headers.host}${req.originalUrl}`);
return;
}
next();
});
}
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'pug');
app.use(express.static(path.join(__dirname, 'public')));
const sessionOptions = {
secret: SESSION_SECRET,
resave: false,
saveUninitialized: true
}
if (app.get('env') === 'production') {
app.set('trust proxy', 1);
sessionOptions.cookie = {
secure: true,
}
}
app.use(session(sessionOptions));
app.use('/', index);
app.use((req, res, next) => {
const err = new Error('Not Found');
err.status = 404;
next(err);
});
app.use((err, req, res, next) => {
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
res.status(err.status || 500);
res.render('error');
});
module.exports = app;