Re: Continuum behind Apache Proxy

2006-10-02 Thread Mark Hewett

On 9/28/06, Vivian Stelller <[EMAIL PROTECTED]> wrote:

Hello at all,
I want to setup continuum in a subdomain of my Apache 2.0.x managed
domain. It should appear on
http://continuum.eecoo.net



Not sure if this will help, but here's how I'm doing it (which ends up
with continuum being at http://scm.example.com/continuum/


 ServerName scm.example.com
...
 RewriteEngine on
 # Proxy Continuum
 RewriteRule ^/continuum$ continuum/ [R]
 ProxyPass /continuum/ http://localhost:8090/continuum/
 ProxyPassReverse /continuum/ http://localhost:8090/continuum/


Mark


Continuum behind Apache Proxy

2006-09-27 Thread Vivian Stelller

Hello at all,
I want to setup continuum in a subdomain of my Apache 2.0.x managed 
domain. It should appear on

   http://continuum.eecoo.net

As far as I know can be done using Apache's mod_rewrite, this is my site 
configuration that will be included into httpd.conf:


   ServerName continuum.eecoo.net

   RewriteEngine on
   RewriteRule ^/$ http://eecoo.net:/continuum/servlet/continuum [P]
   RewriteRule ^/(.*)$ 
http://eecoo.net:/continuum/servlet/continuum/$1 [P]

   RewriteLog  "/var/log/apache2/rewrite.log"
   RewriteLogLevel 3


The logs say that proxiing is done well. Anyway I get some "Forbidden" 
error when trying to access the url http://continuum.eecoo.net.


In addition to the configuration above I just uncommented the proxy 
configuration in

   [continuum-dir]/apps/continuum/conf/application.xml

It now looks like:
...
 
   ${plexus.home}/lib/continuum-web-1.0.3.jar
   /continuum
   ${plexus.home}/webapp
   
 
   
 

 
   8090
   localhost
   80
 

   
 
...

Any ideas why I'm getting a Forbidden response?
Many thanks in advance.

Vivian Steller