forked from harvest-finance/harvest-front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
47 lines (40 loc) · 1.22 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
const express = require('express')
const https = require('https')
const http = require('http')
const helmet = require('helmet')
const path = require('path')
const builtDirectory = path.join(__dirname, 'prod')
const app = express()
app.use(
helmet({
contentSecurityPolicy: {
directives: {
frameAncestors: ['https://dapp-browser.apps.ledger.com'],
},
},
frameguard: false,
}),
)
app.use(express.static(builtDirectory))
app.get('*', (req, res) => res.sendFile(path.join(builtDirectory, 'index.html')))
const httpsPort = process.env.HTTPS_PORT || 443
const httpPort = process.env.HTTP_PORT || 80
const server = https.createServer(
{
cert: process.env.ORIGIN_SERVER_CERT?.replace(/\n/g, '\n'),
key: process.env.ORIGIN_SERVER_KEY?.replace(/\n/g, '\n'),
ca: process.env.ORIGIN_SERVER_CA?.replace(/\n/g, '\n'),
requestCert: true,
rejectUnauthorized: true,
},
app,
)
http
.createServer((req, res) => {
res.writeHead(301, {
Location: `https://${req.headers.host}${req.url}`,
})
res.end()
})
.listen(httpPort, () => console.log(`HTTP->HTTPS Redirect is ready on port ${httpPort}`))
server.listen(httpsPort, () => console.log(`Server started on port ${httpsPort}`))