2021-12-20 18:14:59 +01:00
|
|
|
import http from 'http'
|
2021-12-22 13:10:08 +01:00
|
|
|
import httpProxy from 'http-proxy'
|
2021-12-20 18:14:59 +01:00
|
|
|
|
2022-01-03 18:16:54 +01:00
|
|
|
const proxy = httpProxy.createProxyServer()
|
|
|
|
proxy.on('error', function (err, req, res) {
|
2023-01-04 19:40:37 +01:00
|
|
|
console.error(err)
|
2022-01-03 18:16:54 +01:00
|
|
|
res.writeHead(500, { 'Content-Type': 'text/plain' })
|
|
|
|
res.end('500 Internal Server Error')
|
|
|
|
})
|
2021-12-20 18:14:59 +01:00
|
|
|
|
2022-01-03 18:16:54 +01:00
|
|
|
const server = http.createServer(function (req, res) {
|
2023-01-13 19:36:26 +01:00
|
|
|
const target = req.url.startsWith('/api/') ? 'http://127.0.0.1:8000' : 'http://localhost:8001'
|
2023-05-23 09:37:33 +02:00
|
|
|
proxy.web(req, res, { target, proxyTimeout: 250, timeout: 250 })
|
2022-01-03 18:16:54 +01:00
|
|
|
})
|
2024-08-23 14:27:17 +02:00
|
|
|
server.listen(3000)
|
|
|
|
console.log('Proxy on http://localhost:3000')
|