-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.js
More file actions
27 lines (24 loc) · 744 Bytes
/
server.js
File metadata and controls
27 lines (24 loc) · 744 Bytes
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
const https = require("https");
const { parse } = require("url");
const next = require("next");
const fs = require("fs");
const dev = process.env.NODE_ENV !== "production";
const PORT = 3000;
const hostname = "local.winnerone.site";
const app = next({ dev, hostname, PORT });
const handle = app.getRequestHandler();
const httpsOptions = {
key: fs.readFileSync("local.key.pem", "utf8"),
cert: fs.readFileSync("local.cert.pem", "utf8"),
};
app.prepare().then(() => {
https
.createServer(httpsOptions, (req, res) => {
const parsedUrl = parse(req.url, true);
handle(req, res, parsedUrl);
})
.listen(PORT, (err) => {
if (err) throw err;
console.log(`> Ready on https://${hostname}:${PORT}`);
});
});