Centos – HTTP through a proxy server is not allowed

apache-1.3centosiptablesport-80tomcat6

When I try to connect to my Tomcat server on http://<servername>:8080 it works fine, but from another ISP provided it gives the following error:

HTTP through a proxy server is not allowed.

Some ISP apparently don't allow http over the port 8080, as they think the client uses a proxy.

I also have a httpd running on port 80 for my website.

So in order to avoid the proxy error, I would like to make to following routing:

  • If the user connects to http://<servername>, then the website is served via apache.
  • If the user connects to http://<servername>/AppName, then the port is rerouted to 8080, without the client (or his ISP) knowing.

Is that possible (using iptables or something else) ?

Thank you

Best Answer

What you need to use is Apache's mod_proxy (and mod_proxy_ajp for 2.4) and specifically the ProxyPass configuration:

ProxyPass /AppName http://<servername>:8080

This will proxy that connection on the server and pass it to the backend server on port 8080.

Related Topic