-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
130 lines (121 loc) · 3.74 KB
/
server.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* Requiring all non-local packages */
const express = require("express");
const favicon = require("serve-favicon");
const bodyParser = require("body-parser");
const compression = require("compression");
const helmet = require("helmet");
const morgan = require("morgan");
require("dotenv").config();
/*Requiring all local packages */
//eslint-disable-next-line no-unused-vars
const logger = require("./utilities/logger");
/* Starting app */
const app = express();
const port = process.env.PORT || 8000;
/* Allowing app to use external packages */
app.use(compression());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use(bodyParser.raw());
app.use(
helmet.contentSecurityPolicy({
useDefaults: true,
directives: {
"script-src": [
"self",
"https://kit.fontawesome.com/",
"https://www.googletagmanager.com/",
"https://ashlaydev.com/",
"https://ashlaysteur.com",
"https://www.ashlaysteur.com",
"https://www.ashlaydev.com/",
"https://js-eu1.hs-scripts.com/",
"https://js-eu1.hs-banner.com/",
"https://js-eu1.hs-analytics.net/",
"https://js-eu1.hscollectedforms.net/",
"https://forms-eu1.hscollectedforms.net/",
"https://forms-eu1.hsforms.com/",
"'unsafe-inline'",
"*.cloudflare.com",
],
"img-src": [
"self",
"https://ashlaydev.com",
"https://kit.fontawesome.com/",
"https://ashlaydev.com/",
"https://ashlaysteur.com",
"https://www.ashlaysteur.com",
"https://*.ashlaydev.*/",
"https://www.ashlaydev.com/",
"'unsafe-inline'",
"https://track-eu1.hubspot.com/",
],
"font-src": [
"self",
"https://ka-f.fontawesome.com/",
"https://ashlaydev.com/",
"https://ashlaysteur.com",
"https://www.ashlaysteur.com",
"https://www.ashlaydev.com/",
"*.cloudflare.com/",
],
"style-src": [
"self",
"'unsafe-inline'",
"https://ashlaydev.com/",
"https://ashlaysteur.com",
"https://www.ashlaysteur.com",
"https://www.ashlaydev.com/",
"*.cloudflare.com",
"https://forms-eu1.hsforms.com/",
],
"connect-src": [
"self",
"https://ka-f.fontawesome.com/",
"https://ashlaydev.com/",
"https://ashlaysteur.com",
"https://www.ashlaysteur.com",
"https://www.ashlaydev.com/",
"https://*.google-analytics.com/",
"https://forms-eu1.hscollectedforms.net/",
],
},
})
);
//app.use(helmet.crossOriginEmbedderPolicy());
app.use(helmet.crossOriginOpenerPolicy());
app.use(helmet.crossOriginResourcePolicy());
app.use(helmet.dnsPrefetchControl());
app.use(helmet.expectCt());
app.use(
helmet.frameguard({
action: "deny",
})
);
app.use(helmet.hidePoweredBy());
app.use(helmet.hsts());
app.use(helmet.ieNoOpen());
app.use(helmet.noSniff());
app.use(helmet.originAgentCluster());
app.use(helmet.permittedCrossDomainPolicies());
app.use(
helmet.referrerPolicy({
policy: "no-referrer",
})
);
app.use(helmet.xssFilter());
app.use(morgan("dev"));
/* Setting routes */
app.use("/css", express.static("./public/css"));
app.use("/js", express.static("./public/js"));
app.use("/html", express.static("./public/html"));
app.use("/images", express.static("./public/images"));
app.use("/json", express.static("./json"));
app.use("/CustomComponents", express.static("./public/components"));
app.use("/download", express.static("./public/download"));
app.use("/", require("./routes/index"));
app.use(favicon(__dirname + "/public/images/favicon.ico"));
/* Starting app on port specified above */
app.listen(port, () => {
console.log(`App listening on port ${port}`);
});