HTTP proxy ring middleware for Clojure web applications.
[tailrecursion/ring-proxy "3.0.0-SNAPSHOT"]
Assuming your application's route handler is defined as routes
, you
may add a proxied route with something like the following:
(ns your-ns
(:require [tailrecursion.ring-proxy :refer [wrap-proxy]]))
(def app
(-> routes
(wrap-proxy "/remote" "http://some.remote.server/remote")))
Copyright © 2013 Alan Dipert and Micha Niskin
Distributed under the Eclipse Public License, the same as Clojure.