Tagged Questions

4
votes
10answers
3k views

Apache/Tomcat error - wrong pages being delivered

This error has been driving me nuts. We have a server running Apache and Tomcat, serving multiple different sites. Normally the server runs fine, but sometimes an error happens where people are ...
2
votes
5answers
958 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
270 views

Stuck with apache,mod-ajp weird redirection

hi all i have a redirection problem with mod ajp, that it always adds the application name before the desired page, for example: if i requested the page: http://myapp.com/mypage it is converted to ...
2
votes
1answer
4k views

apache proxy to tomcat keep alive confusion

I have an apache 2.2 server infront of a tomcat 6 server. using mod_proxy_ajp on apache to proxy requests to tomcat. pretty standard setup. If I need to disable keep-alive connections for browsers, ...
2
votes
2answers
4k views

ProxyPass, ProxyReverse vs AJP

I currently have a Tomcat + Apache HTTP server setting to serve my Java servlet: ProxyPass /myservice http://localhost:8080/myservice ProxyPassRerverse /myservice http://localhost:8080/myservice ...
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 ...
1
vote
1answer
27 views

How can I protect a Tomcat webapp that's reverse proxied in an Apache2 virtual host using basic authentication?

I'm having trouble figuring out how to adding basic HTTP authentication to password-protect a development testing environment running on a production web server. Both the main site and the testing ...
1
vote
1answer
183 views

secondary ajp worker not working between apache and tomcat

I've had this working for months but I had a power cycle today and something broke. Sorry, this is a bit detailed and specific, but I'm desperate for help. I have apache-2.2 and two tomcat-6 servers ...
1
vote
1answer
431 views

Avoid 302 Redirects through Apache

Hello I have a confluence installation running on tomcat. In front of tomcat I have an apache server. When I go to my page a 302 to /homepage.action is done and afterwards a redirect to the start ...
1
vote
5answers
1k views

Apache is incorrectly converting jsp pages to “text/plain”

I've got a fairly normal setup in which Apache proxies requests to a servlet running inside Tomcat over the AJP protocol. We've run this setup on Apache 2.0.46/Tomcat 5.0.28 for ages without ...
0
votes
1answer
198 views

Apache forward everything to Tomcat except webmail

I have my Apache HTTP server set up to forward all requests to Tomcat, i.e. proxy_ajp.conf looks like: ProxyPass / ajp://localhost:8009/ where Tomcat is listening on port 8009. This works find ...
0
votes
2answers
1k views

Subdomain under Apache to proxy into Tomcat

I'm having trouble with making a subdomain to my Windows computer while using AJP to proxy to Tomcat. This is what I have in my httpd.conf file: <VirtualHost *:80> ServerName ...
0
votes
2answers
949 views

AJP proxy that maps internal servlet name to a different external name

Using apache2 I want to set up an AJP proxy for a Tomcat server that maps an internal servlet URL to a completely different URL externally. Currently I am using the following configurations: Apache2 ...
0
votes
3answers
1k views

How do I connect my tomcat app to apache 2 so the paths aren't lame?

I've got a tomcat instance with several apps running on it... I want the root of my new domain to go to one of these apps (context path of blah).. so I have the following set up: <Location /> ...