-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
49 lines (43 loc) · 1.39 KB
/
server.js
File metadata and controls
49 lines (43 loc) · 1.39 KB
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
const { createServer } = require('https');
const { parse } = require('url');
const next = require('next');
const fs = require('fs');
const path = require('path');
const dev = process.env.NODE_ENV !== 'production';
const hostname = 'localhost';
const port = 3000;
// Prepare the Next.js app
const app = next({ dev, hostname, port });
const handle = app.getRequestHandler();
// SSL certificate paths
const certPath = path.join(__dirname, 'cert.pem');
const keyPath = path.join(__dirname, 'key.pem');
// Check if certificates exist
if (!fs.existsSync(certPath) || !fs.existsSync(keyPath)) {
console.error('SSL certificates not found! Please run:');
console.error('openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes');
process.exit(1);
}
app.prepare().then(() => {
const httpsServer = createServer(
{
cert: fs.readFileSync(certPath),
key: fs.readFileSync(keyPath),
},
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');
}
}
);
httpsServer.listen(port, (err) => {
if (err) throw err;
console.log(`> Ready on https://${hostname}:${port}`);
console.log('> Camera access should now work!');
});
});