-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.js
35 lines (31 loc) · 994 Bytes
/
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
/* eslint-disable @typescript-eslint/no-require-imports */
// require('dotenv').config()
const { createServer } = require("https");
const { parse } = require("url");
const next = require("next");
const fs = require("fs");
const HOST = "dev.flowssync.com";
const hostname = HOST;
const port = 443;
const dev = process.env.NODE_ENV !== "production";
const app = next({ dev, hostname, port });
const handle = app.getRequestHandler();
const httpsOptions = {
key: fs.readFileSync(`./${HOST}-key.pem`),
cert: fs.readFileSync(`./${HOST}.pem`),
};
app.prepare().then(() => {
createServer(httpsOptions, async (req, res) => {
try {
const parsedUrl = parse(req.url, true);
await handle(req, res, parsedUrl);
} catch (err) {
console.error("Error occurred handling", req.url, err);
res.statusCode = 500;
res.end("internal server error");
}
}).listen(port, (err) => {
if (err) throw err;
console.log(`> Ready on https://${hostname}`);
});
});