Files
heartb.it/lib/middleware/host_redirect.coffee

7 lines
178 B
CoffeeScript

module.exports = (redirect_map = {}) ->
(req, res, next) ->
host = req.header('Host')
if redirect_map[host]
res.redirect(redirect_map[host])
else
next()