Tagged Questions
The mod-proxy tag has no wiki summary.
20
votes
4answers
15k 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 ...
12
votes
6answers
27k 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.
...
11
votes
3answers
6k 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 ...
8
votes
4answers
14k views
Setting up an Apache Proxy with Authentication
I need to set up a proxy with authentication to verify the behavior of an application that connects to the internet.
I am trying to set-up an Apache installation with forward proxy and ...
7
votes
5answers
2k views
Understanding mod_proxy and Apache 2 for writing a comet-server
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 questions:
As I ...
5
votes
2answers
8k 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
1answer
861 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
...
3
votes
1answer
528 views
Spring Security and AJP proxy
I use Spring Security and Apache proxy for a web app. When using standard mod_proxy everything is OK, but after switching to AJP proxy there appears a problem with Spring security redirects.
Apache ...
3
votes
2answers
675 views
Mapping a subdomain to a Servlet context using Apache 2.x and Tomcat 6.x
I have installed Archiva on my machine under Tomcat 6.x at http://dev.mycompany.com:8080/archiva and can access the application and everything, but I want to access it from the subdomain ...
3
votes
4answers
1k views
How to use a different path name in ProxyPass than the Tomcat context name
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
However, this ...
3
votes
1answer
5k views
Apache & JBoss use port 80 at the same time
I have both Apache 2 and JBoss 4.2.3 on the same machine and would like both of them to use port 80. There are several ways I see people doing this mod_jk, mod_proxy, but I'm not sure which one is the ...
3
votes
1answer
5k 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 ...
3
votes
1answer
2k 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 ...
2
votes
1answer
37 views
Tomcat Workers - Connecting Tomcat and Apache
I'm trying to resolve an issue about connecting Apache and Tomcat with mod_proxy_ajp. From reading I found that the problem might be the numbers of workers in the Apache and the Tomcat. So I try to ...
2
votes
1answer
159 views
Forward connection from Apache on 80 to Tomcat 6 on 8080 with mod_proxy [closed]
I've a domain www.example.com, now I'm trying to forward the browser connection to http://myserveripaddress:8080/MyAppName, in order to let the user surf MyApp when they type www.example.com on their ...
2
votes
1answer
89 views
When I visit Django /admin via a Rewritten URL I am redirected to 127.0.0.1 rather than the correct url
I haven't used Apache with Django very much, normally using nginx, gunicorn and a unix socket instead.
When experimenting with Apache, mod_proxy and Django, I've been trying to pass all requests to ...
2
votes
0answers
139 views
Apache mod-proxy ProxyErrorOverride for specific URL patterns
I am using Apache 2.2 with mod-proxy and I have configured it with several ProxyPass statements to proxy from remote URL to local URL. I need to have custom error documents returned from Apache for ...
2
votes
1answer
547 views
Apache mod_proxy_ajp with GlassFish thread pool busy
I've got Apache 2.2.15 proxying requests to GlassFish 3.1.1 via mod_proxy_ajp using the defaults on both Apache and GlassFish. The setup seems to work okay for a very short while then I'll get a ...
2
votes
1answer
50 views
Setting a new IP as a subfolder of an existing IP
I'm pretty new to Apache configurations... is the following possible?
I have 2 separate web servers, each hosting a different application - totally separate.
My main application is under the domain ...
2
votes
2answers
40 views
How can I get a script to run whenever an http request is made?
I have 2 web servers. One hosts my main website (www.site.com), and the other hosts a subdomain (sub.site.com). The way I have it set up, any time you go to the subdomain, it routes through the main ...
2
votes
5answers
950 views
mod_proxy_ajp error: renders html as text/plain, prompts user to “save as…”
We have an odd, intermittent error that occurs with mod_proxy_ajp, i.e. using apache as a front end to a tomcat server.
The error
User clicks on a link browser prompts
user to "save as...." (e.g. ...
2
votes
2answers
776 views
Remove basic authentication header with apache mod proxy
I have a http basic secured website. I hide a tomcat application server with mod_proxy. Can I remove the http basic header? The tomcat application reads the header and returns 401 not authorized. ...
2
votes
1answer
244 views
Handling Tomcat Errors Through Apache
I use Tomcat for hosting my web application and use apache http server on top of it using mod proxy for load balancing.
When my application throws a 404 or 500 error, I want to serve the error pages ...
2
votes
1answer
1k views
Tomcat cookies not working via my ProxyPass VirtualHost
I'm having some issues with getting cookies to work when using a ProxyPass to redirect traffic on port 80 to a web-application hosted via Tomcat.
My motivation for enabling cookies is to get rid of ...
2
votes
2answers
529 views
web apps on localhost on different ports accessed via port 80
On my laptop, with Apache
I have different web apps in various directories on my laptop, that I can start using simple webservers listening on different ports. For example
~/app1/./app.pl
>> ...
2
votes
2answers
6k 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
2k 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 ...
2
votes
1answer
1k views
mod_proxy time-outs (502) and failovers
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 ...
2
votes
5answers
7k views
Help me understand how to use ProxyPass
UPDATE: I added a revised question after playing around with it two answers below.
Hi there,
If you're reading this you're probably familiar with Apache's mod_proxy and its ProxyPass function. Like ...
2
votes
3answers
3k views
How to confire Apache to work as proxy (load balancer) for j2ee server?
there. I have apache web server installed as frontend and I have j2ee SAP Netweaver Application Server installed in Intranet server. How can I configure apache to forward requests and response to/from ...
2
votes
2answers
2k views
Apache sockets not closing?
I have a web application written using CherryPy, which is run locally on 127.0.0.1:4321. We use mod-rewrite and mod-proxy to have Apache act as a reverse proxy; Apache also handles our SSL encryption ...
1
vote
0answers
39 views
Apache ProxyPass and Sessions
So I'm using Apache to proxy a specific folder to a Glassfish instance. The rules in my conf are:
ProxyPass /folder http://localhost:28083
ProxyPassReverse /folder http://localhost:28083
...
1
vote
1answer
53 views
Apache LoadBalancer 'crashes' under the load [closed]
I have configured an Apache HTTP server + load balancer (utilizing the mod_proxy_balancer)
When I execute load testing the balancer don't pass most of the load to the backend servers(simple Java App ...
1
vote
0answers
93 views
How to setup Apache2 VHost forward to Tomcat?
I've been searching on the web for days and having a lot of experiment of what I found but no luck about my problem. I hope that some of you could give me some hint on this.
In short, I want to do ...
1
vote
1answer
94 views
Deploy a rails application in a sub-directory with Passenger
I have a website : http://foo.com
I would like to add a rails application in : http://foo.com/subdir
So I use a Apache Proxy to do it.
In the server with the Rails application, I have Passenger and ...
1
vote
1answer
63 views
no-jk Equivalent in mod_proxy
I've always used Apache + Tomcat via mod_jk. To tell Apache not to forward /recources to Tomcat, you just put this in vhosts:
SetEnvIf Request_URI "/resources/*" no-jk
How do you do the same thing ...
1
vote
1answer
106 views
How to run Rails 3.0 on jRuby behind mod_ajp Apache 2 proxy
I wonder if anyone got a jRuby Rails 3.0 app to work behind an Apache 2 proxy, through an AJP mount. I'd like the following configuration to work, without uncommenting the last statement.
...
1
vote
2answers
107 views
servlets behind a proxy: getting un-proxied URL
Is there anything in the Servlet spec, Tomcat, or Wicket that will allow a webapp running behind mod_proxy to determine the non-proxied URL of the request?
We need to send out emails with links in ...
1
vote
0answers
84 views
Apache as proxy not working for all sites
can somebody tell me whi
ProxyPass /melonfire/ http://www.melonfire.com/
can work by accessing http://localhost/melonfire/ but
ProxyPass /facebook/ http://www.facebook.com/
is redirectig the ...
1
vote
0answers
219 views
Is there a way to remove apaches Reverse Proxy Request Headers?
When acting as a reverse proxy, apache adds x-forwarded headers as described here.
http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#x-headers
In my configuration I have configured server A as a ...
1
vote
3answers
36 views
GET webdata from a different network
Assume that there have 3 servers (A, B and C):
Server A can access server B only, and A is not able to access C directly.
B can access C.
A, C are in a separate network.
Both B and C are http ...
1
vote
1answer
135 views
Case-insensitive Location
I am using VisualSVN Server that installs an Apache server.
In the below example
<Location /MyIISWebSite>
ProxyPass https://my-domain.com:8443/MyIISWebSite
ProxyPassReverse ...
1
vote
1answer
268 views
Handling POST requests using Apache's mod_proxy
I am currently hosting 2 web applications on the same Apache server. Let's just call, them A and B. I was using JSONP to make cross domain ajax calls from A to B (I needed some data from B). The ...
1
vote
1answer
135 views
Clustering Apache Tomcat6
I've got a Java Enterprise Web Application which uses Tomcat6+Struts+Hibernate+MySql. at the time being it's publicly up and running on a single server. In order to performance issues we should move ...
1
vote
0answers
162 views
Apache mod_rewrite/mod_proxy - re-write last part of URI as query string?
We have a web resource that can be accessed with a URL/URL of the form:
http://[host1]:[port1]/aaa/bbb.ccc?param1=xxx¶m2=yyy...
However, we are working with an external (i.e., not developed ...
1
vote
1answer
690 views
AJP 1.3 Connector listens on port 8009 globally, why and how to turn it off?
I set up a Tomcat 6 with an Apache 2 and mod_proxy. Now I have this default value in my server.xml:
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
netstat looks like this:
...
1
vote
1answer
116 views
Problem redirecting calls from apache2 to tomcat with mod_proxy
I'm trying to figure out what is wrong with this configuration of mod_proxy (I should say that I'm not familiar with apache). This is the content of my httpd.conf:
LoadModule proxy_module ...
1
vote
2answers
80 views
Front-end Proxy does not reference resources correctly
I'm having quite a lot of difficulties with running a frontend proxy in front of play.
This post is also on the google group, I'll post the received suggestions on both.
I'm using apache and ...
1
vote
2answers
115 views
A different document root for beta users?
I have a wordpress based php application running on apache on ubuntu server. I have developed a new version of the application, and I'd like only certain users to access this beta.
My server's ...
1
vote
1answer
326 views
How to get browser URL in Apache-Tomcat Web Application?
I have configured my web application using Apache-Tomcat connector through mod_proxy - see below.
<IfModule mod_proxy.c>
ProxyPass /myapp http://127.0.0.1:8080/myapp
ProxyPassReverse /myapp ...