Archived
1
0

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

@ -9,9 +9,9 @@ export const router = Router()
const getProxyTarget = (req: Request, rewrite: boolean): string => {
if (rewrite) {
const query = qs.stringify(req.query)
return `http://127.0.0.1:${req.params.port}/${req.params[0] || ""}${query ? `?${query}` : ""}`
return `http://0.0.0.0:${req.params.port}/${req.params[0] || ""}${query ? `?${query}` : ""}`
}
return `http://127.0.0.1:${req.params.port}/${req.originalUrl}`
return `http://0.0.0.0:${req.params.port}/${req.originalUrl}`
}
router.all("/(:port)(/*)?", (req, res) => {