Proxy to 0.0.0.0 instead of localhost

This commit is contained in:
Asher
2020-10-28 11:29:43 -05:00
parent f2f1fee6f1
commit 1067507c41
2 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ router.all("*", (req, res, next) => {
proxy.web(req, res, {
ignorePath: true,
target: `http://127.0.0.1:${port}${req.originalUrl}`,
target: `http://0.0.0.0:${port}${req.originalUrl}`,
})
})
@ -95,6 +95,6 @@ router.ws("*", (socket, head, req, next) => {
proxy.ws(req, socket, head, {
ignorePath: true,
target: `http://127.0.0.1:${port}${req.originalUrl}`,
target: `http://0.0.0.0:${port}${req.originalUrl}`,
})
})