-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
41 lines (36 loc) · 1.08 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
const express = require('express');
const next = require('next');
const fs = require('fs');
const https = require('https');
const http = require('http');
const port = parseInt(process.env.PORT, 10) || 3000;
const dev = process.env.NODE_ENV !== 'production';
const app = next({ dev });
const handle = app.getRequestHandler();
app.prepare().then(() => {
const server = express();
server.all('*', (req, res) => {
return handle(req, res);
});
const options = {
key: fs.readFileSync('./bing-bong.today+3-key.pem', 'utf-8'),
cert: fs.readFileSync('./bing-bong.today+3.pem', 'utf-8'),
};
if (dev) {
https
.createServer(options, server, (req, res) => {
console.log('필요한 코드 넣기');
})
.listen(port, () => {
console.log(`서버 포트: https://bing-bong.today:${port} ...`);
});
} else {
http
.createServer(options, server, (req, res) => {
console.log('필요한 코드 넣기');
})
.listen(port, () => {
console.log(`서버 포트: http://bing-bong.today:${port} ...`);
});
}
});