HTTP through a proxy server is not allowed
- by jidma
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