Team Elements

Status: Caution PostgreSQL Open Source Initiative (OSI) Java
PUBLIC PROFILE

Back to topics

Issues and Open Discussion

Running on apache tomcat behind apache webserver

You need to be logged in to post messages

Running on apache tomcat behind apache webserver

12/10/2007 3:53 PM EST

I'm getting the following error trying to resend an invitation which wouldn't go.

Proxy Error

The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /team/ProjectManagementTeam.do.

Reason: Error reading from remote server

Any ideas? This is an apache tomcat server running behind an apache web server. Is there a guide for setting this up? It's apache 2.0.52. I'm assuming it's a misconfiguration error but not sure. Is anyone else doing this? TOmcat is running on 8080 and I want to present to

1. 12/13/2007 11:37 PM EST
Default user photo

By Matt Rajkowski

Concursive Corporation
Product Design

airplane-icon-100x100.png

I'm not sure of anything special... typical httpd.conf might be:

Include /usr/java/tomcat/conf/jk/mod_jk.conf

  1. Use name-based virtual hosting.

NameVirtualHost *:80

<VirtualHost *:80>
JkMount / ajp13
JkMount /* ajp13
</VirtualHost>

You could try setting in build.properties:
URL=www.yoursite.com

1 result found