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.
…
0
votes
0answers
237 views
Apache VirtualHost with mod-proxy and SSL
I am trying to setup a server with multiple web applications which will all be served through apache VirtualHost (apache running on the same server). My main constrain is that each web application …
4
votes
4answers
506 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 …
1
vote
1answer
51 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() {
…
0
votes
1answer
16 views
URL/Apache redirection question. (domain+directory redirect to sudomain)
Hello, I have been trying to figure this out for about 2 hours now. A new requirement came up where it was asked of me to try to find a way to send requests from foo.bar.com/blah to blah.bar.com.
…
0
votes
2answers
483 views
Apache mod-proxy load balancer maintenance
I have mod-proxy and mod-proxy-balancer setup as a load balancing reverse proxy. Something like this:
<Proxy balancer://example>
BalancerMember http://hostname:8000 keepalive=on
…
0
votes
1answer
530 views
RewriteRule, Proxy directive [P] - Is it possible to make request use actual proxy host?
Hello Everybody
Does anyone know whether it is possible to make rewrite rules which use the proxying [P] directive, as shown below, to behave like ProxyPass used in conjunction with ProxyPreserveHost …
0
votes
0answers
44 views
Disable ProxyPass rules within a virtual host on apache 2 [closed]
I have a global proxypass rule in httpd.conf
rules at global level
ProxyPass /test/css http://myserver:7788/test/css
ProxyPassReverse /test/css http://myserver:7788/test/css
and I have a virtual …
0
votes
1answer
29 views
Proxy URL without authentication
I have an Apache web server with basic authentication enabled at the root directory. I can't change this due to business restrictions.
However, we want a particular URL to be a proxy to a different …
0
votes
1answer
65 views
Reverse Proxy in CakePHP?
I've got a CakePHP application, and the following directives in my httpd.conf
ProxyRequests off
ProxyPass /forum/ http://somesite.com/phpbb3
ProxyPass /gallery/ http://someothersite.com/gallery3
…
0
votes
0answers
59 views
Can Apache BalancerMember be configured to use unix domain sockets?
I am using the Apache Proxy balancer directive to hook up a set of thin servers (for Rails).
Like so:
<Proxy balancer://thinservers>
BalancerMember http://127.0.0.1:5000 route=thin0
…
0
votes
0answers
11 views
How to detect network connection failures in mod_proxy?
We have an Apache server accepting connections through mod_proxy from random computers with bad internet connections in Africa. We would like to know how many of these connections are attempted (and …
0
votes
2answers
35 views
How to configure Apache to proxy exactly one file?
(I must be dense - I just can't figure out the Apache documentation on how to do this.)
To speed up some swf development I'm doing, I want to have my local machine fetch my local swf when I browse to …
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 …
0
votes
2answers
32 views
combining proxy server modules with my webapplication
I want to implement a autmatic billing systen for one cybercafe.MEasning when some one want to surf net in my cafe he goes to attendent and attendent allocates him the pc and gives him the passswd …
