HttpProxyServlet

From Resin 3.0

Jump to: navigation, search


The HttpProxyServlet forwards requests to a backend web server. You can use the HttpProxyServlet to integrate with .asp or Ruby pages.

Configuration

resin-web.xml

<web-app xmlns="http://caucho.com/ns/resin">
  <servlet>
    <servlet-name>http-proxy</servlet-name>
    <servlet-class>com.caucho.servlets.HttpProxyServlet</servlet-class>
    <init>
      <host>localhost:6666</host>
    </init>
  </servlet>

You can have multiple <host> directives to load balance to multiple backend servers.

Personal tools