[Rt-devel] [PATCH] ProxyPass and 3.6.1 redirect function
rt-devel at develop-help.com
rt-devel at develop-help.com
Fri Aug 18 02:50:02 EDT 2006
On Fri, Aug 18, 2006 at 03:03:30PM +0930, Michael Brader wrote:
> Hi,
>
> We have RT set up behind a proxy ie.
>
> <VirtualHost *:80>
> ServerName rt.youramigo.com
> ...
> ProxyPass / http://rtdb.bc.youramigo.com:8078/
> </VirtualHost>
>
> After upgrading to 3.6.1 the redirect function in RT::Interface::Web
> was exposing the internal URL rather than rt.youramigo.com.
Another option that might work instead of a code change is
ProxyPassReverse:
<VirtualHost *:80>
ServerName rt.youramigo.com
...
ProxyPass / http://rtdb.bc.youramigo.com:8078/
ProxyPassReverse / http://rtdb.bc.youramigo.com:8078/
</VirtualHost>
(original bounced from list, resent with correct from.)
Tony
More information about the Rt-devel
mailing list