mirror of
https://github.com/jimeh/heartb.it.git
synced 2026-02-19 12:56:47 +00:00
7 lines
178 B
CoffeeScript
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() |