ReverseProxy

A Plug based, reverse proxy server.

ReverseProxy can act as a standalone service or as part of a plug pipeline in an existing application.

From Wikipedia:

In computer networks, a reverse proxy is a type of proxy server that retrieves resources on behalf of a client from one or more servers. These resources are then returned to the client as though they originated from the proxy server itself. While a forward proxy acts as an intermediary for its associated clients to contact any server, a reverse proxy acts as an intermediary for its associated servers to be contacted by any client.

Summary

Functions

Callback implementation for c:Plug.call/2

Callback implementation for c:Plug.init/1

Callback implementation for c::application.start/2

Functions

call(conn, opts)

Specs

call(Plug.Conn.t, Keyword.t) :: Plug.Conn.t

Callback implementation for c:Plug.call/2.

init(opts)

Specs

init(Keyword.t) :: Keyword.t

Callback implementation for c:Plug.init/1.

start(type, args)

Specs

start(term, term) :: term

Callback implementation for c::application.start/2.