You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@continuum.apache.org by Mark Hewett <ma...@gmail.com> on 2006/10/02 20:09:56 UTC

Re: Continuum behind Apache Proxy

On 9/28/06, Vivian Stelller <vi...@uni-ulm.de> 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/

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

Mark