-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathserver.js
65 lines (58 loc) · 1.42 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const Koa = require('koa')
const path = require('path')
const Static = require('koa-static')
const proxy = require('http-proxy-middleware')
const send = require('koa-send')
const history = require('koa-connect-history-api-fallback')
const app = new Koa()
app.use(history({
verbose: true,
disableDotRule: true,
rewrites: [
{
from: /(js|css)$/,
to (ctx) {
const path = ctx.parsedUrl.pathname
const staticIndex = path.indexOf('/static')
if (staticIndex > -1) {
return path.slice(staticIndex)
} else {
const index = path.lastIndexOf('/')
return path.slice(index)
}
}
}
]
}))
const Public = Static(path.join(__dirname, '../dist'))
app.use(Public)
const favicon = async (ctx, next) => {
if (ctx.path === '/favicon.ico') {
await send(ctx, '/favicon.ico', {
root: path.join(__dirname, '../')
})
} else {
await next()
}
}
app.use(favicon)
const proxyOptions = {
target: 'yourServerUrl',
changeOrigin: true,
pathRewrite: {
'^/api': '/'
}
}
const proxyMiddleware = async (ctx, next) => {
if (ctx.url.startsWith('/api')) {
ctx.respond = false
return proxy(proxyOptions)(ctx.req, ctx.res, next)
}
return next()
}
app.use(proxyMiddleware)
const HOST = process.env.HOST || '0.0.0.0'
const PORT = process.env.PORT || 8001
app.listen(PORT, HOST, () => {
console.log(`server is listening on ${HOST}:${PORT}`)
})