5
votes
3answers
2k views
Best practices for configuring Apache / Tomcat
We are currently using Apache 2.2.3 and Tomcat 5 (Embedded in JBoss 4.2.2) using mod_proxy_jk as the connector.
Can someone shed some light on the the correct way to calculate / configure the values …
4
votes
4answers
508 views
Understanding mod_proxy and Apache 2 for writing a comet-server
Hi folks,
I currently try to implement a simple HTTP-server for some kind of comet-technique (long polling XHR-requests). As JavaScript is very strict about crossdomain requests I have a few …
4
votes
1answer
2k views
Apache2 Reverse Proxy to an end-point that requires BasicAuth but want to hide this from user
Basically my scenario is that I have an internal website that requires a SINGLE hard-coded username and password to access (and this can't be turned off, only changed). I am exposing this website …
4
votes
6answers
4k views
Bad Gateway 502 error with Apache mod_proxy and Tomcat
We're running a web app on Tomcat 6 and Apache mod_proxy 2.2.3. Seeing a lot of 502 errors like this:
Bad Gateway!
The proxy server received an invalid response from an upstream server.
…
3
votes
3answers
872 views
apache to tomcat: mod_jk vs mod_proxy
What are the advantages and disadvantages of using *mod_jk* and *mod_proxy* for fronting a tomcat instance with apache?
I've been using mod_jk in production for years but I've heard that it's "the …
2
votes
2answers
908 views
Apache + Tomcat: Using mod_proxy instead of AJP
Is there any way I connect Apache to Tomcat using an HTTP proxy such that Tomcat gets the correct incoming host name rather than localhost? I'm using this directive in apache:
ProxyPass /path …
2
votes
2answers
526 views
How can I set up a reverse proxy with mod_proxy without redirecting?
How can I set up a reverse proxy with mod_proxy without redirecting to another server or IP? This will be a virtual host environment. The reason I want to do this is so that mod_proxy handles the …
1
vote
1answer
52 views
How do I reliably access the HttpServletRequest in a jspx when it’s behind a proxy?
I've got a jspx that needs to know the current HttpServletRequest's getServerName(). The jspx can fetch this with #{mybean.serverName} from its bean, like this:
public String getServerName() {
…
1
vote
2answers
143 views
How to use a different path name in ProxyPass than the Tomcat context name
Hello,
I am using Tomcat 5.5.9 and Apache 2.x
We are trying to use a path name in ProxyPass that is different
than the Tomcat context name.
ProxyPass /path http://localhost:8080/contextname
…
1
vote
1answer
69 views
Apache Config to send sub dirs to different servers - mod_proxy
We use Apache as a reverse proxy server. This has been working well, but I now need to have http://domain.com/sub1 proxy to serverA and http://domain.com/sub2 proxy to serverB. Is this possible? If …
1
vote
1answer
1k views
Mixing RewriteRule and ProxyPass in Apache
I was working on debugging an issue today related to mixing mod_proxy and mod_rewrite together and I ended up having to use balancer://mycluster in the RewriteRule in order to stop receiving a 404 …
1
vote
1answer
220 views
mod_proxy time-outs (502) and failovers
Hi,
so we're running a cluster of 2+ backend servers (happend to be JBoss servers) that are being load-balanced by an Apache 2.2. From time to time it can happen that the backend servers become …
1
vote
2answers
179 views
Risk of using Apache mod_proxy
I am now exploring to use Apache's mod_proxy's directive, eg ProxyPass, as part of solution for cross-domain scripting restriction (for html/ajax/flash code). However, I am afraid by enabling …
1
vote
1answer
228 views
Issues Setting up a reverse proxy in Apache
My roommate and I each have a separate webserver we are trying to set up. We are trying to use mod_proxy so that his server will forward requests to my machine (we have two seperate machines behind …
1
vote
1answer
1k views
Redirect URL path to forward to tomcat servlet using Apache/mod_proxy
I currently have a tomcat servlet 1 running under the ROOT:
api1.myhost.com:8080/
I'm using mod_proxy and simply forwarding all requests from
api1.myhost.com to this instance. This is working as of …
