-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
30 lines (23 loc) · 792 Bytes
/
server.js
File metadata and controls
30 lines (23 loc) · 792 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
28
29
30
const { createServer } = require('https');
const { parse } = require('url');
const next = require('next');
const fs = require('fs');
const nextConfig = require('./next.config');
const dev = process.env.NODE_ENV !== 'production';
const port = process.env.PORT || 5000;
const app = next({ dev, nextConfig });
const handle = app.getRequestHandler();
// HTTPs local certificates
const httpsOptions = {
key: fs.readFileSync('./certificates/localhost.key'),
cert: fs.readFileSync('./certificates/localhost.crt'),
};
app.prepare().then(() => {
createServer(httpsOptions, (req, res) => {
const parsedUrl = parse(req.url, true);
handle(req, res, parsedUrl);
}).listen(port, (error) => {
if (error) throw error;
console.log(`> Server started on https://localhost:${port}`);
});
});