Is there a way to pass request information, such as HOST header value, on to app.get?
My application requires that a particular host is present, so when I call it normally like this:
app.get("foo")
Specifically, I want to override the
request.env["HTTP_HOST"]
value.
tia