This project is adapted from tailrecursion's ring-proxy middleware, and is meant for use with the Trapperkeeper Jetty9 Webservice.
To use ring-middleware
, include the following dependency in your project.clj file:
[puppetlabs/ring-middleware "0.1.2"]
This project provides a single function, wrap-proxy
, with the following signature:
(wrap-proxy [handler proxied-path remote-uri-base & [http-opts])
This function returns a ring handler that, when given a URL with a certain prefix, proxies the request
to a remote URL specified by the remote-uri-base
argument.
The arguments are as follows:
handler
: A ring-handler that will be used if the provided url does not begin with the proxied-path prefixproxied-path
: The URL prefix of all requests that are to be proxied. This can be either a string or a regular expression pattern.remote-uri-base
: The base URL that you want to proxy requests with theproxied-path
prefix tohttp-opts
: An optional list of options for an http client. This is used by the handler returned bywrap-proxy
when it makes a proxied request to a remote URI. For a list of available options, please see the options defined for clj-http-client.
For example, the following:
(wrap-proxy handler "/hello-world" "http://localhost:9000/hello")
would return a ring handler that proxies all requests with URL prefix "/hello-world" to
http://localhost:9000/hello
.
By default, all proxy requests using wrap-proxy
will follow any redirects, including on POST and PUT
requests. To allow redirects but restrict their use on POST and PUT requests, set the :force-redirects
option to false
in the http-opts
map. To disable redirect following on proxy requests, set the
:follow-redirects
option to false
in the http-opts
map. Please not that if proxy redirect following
is disabled, you may have to disable it on the client making the proxy request as well if the location returned
by the redirect is relative.
wrap-proxy
supports SSL. To add SSL support, you can set SSL options in the http-opts
map as you would in
a request made with clj-http-client. Simply set the
:ssl-cert
, :ssl-key
, and :ssl-ca-cert
options in the http-opts
map to be paths to your .pem files.