hi,
i’m running mongrel behind lighttpd proxy server, i redirect /xyz URLs
to port 8081so i can get dynamic content. sometimes this content
redirects e.g lighttpd config.
“/content/” =>
((
“host” =>“my IP address here”,
“port” => 8081
)) ,
when I use rails redirect_to and webrick as the server i get the
desired transation of the URLS with no sign of 8081 in the redirected
URL
http://myserver/content/redirected_url
when I use mongrel, the redirected URL contains the 8081 port,
http://myserver:8081/content/redirected_url
thanks
BD.