``` val all = reverseProxy( "<http://fo...
# http4k
d
Copy code
val all = reverseProxy(
        "<http://foo.com|foo.com>" to { req: Request -> Response(OK).body("foo") },
        "<http://bar.com|bar.com>" to { req: Request -> Response(OK).body("bar") }
    )