-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathserver.js
41 lines (35 loc) · 1.09 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 { createProxyMiddleware } = require('http-proxy-middleware');
const dev = process.env.NODE_ENV !== 'production';
const app = next({ dev });
const handle = app.getRequestHandler();
app.prepare().then(() => {
const server = express();
server.use('/api/linuxdo', createProxyMiddleware({
target: 'https://linux.do',
changeOrigin: true,
pathRewrite: {
'^/api/linuxdo': '',
},
}));
server.use('/image/linuxdo', createProxyMiddleware({
target: 'https://linux.do',
changeOrigin: true,
pathRewrite: {
'^/image/linuxdo': '',
},
headers: {
'Accept': 'image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
'Referer': 'https://linux.do'
}
}));
server.all('*', (req, res) => {
return handle(req, res);
});
const PORT = process.env.PORT || 3000;
server.listen(PORT, (err) => {
if (err) throw err;
console.log(`> Ready on http://localhost:${PORT}`);
});
});