[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Rack, map (forward) Port to URI

Alexey Petrushin

4/24/2009 11:40:00 AM

Hello, Is that possible to map Port to URI with Rack?

I want to integrate Site writen in Ruby with Zimbra Mail and some other
systems:

Site URI: www.company.com/site <= localhost:80
Zimbra Mail: www.company.com/site/mail <= localhost:81
App XXX: www.company.com/site/xxx <= localhost:XX

As i understand it's possible to do with Unix Port Forwarding and Some
Apache Machinery, but it would be a lot simpler and better to do it with
Rack.

Thanks!
--
Posted via http://www.ruby-....

1 Answer

David Masover

4/24/2009 7:35:00 PM

0

On Friday 24 April 2009 06:39:31 Alexey Petrushin wrote:
> Hello, Is that possible to map Port to URI with Rack?

Probably...

> I want to integrate Site writen in Ruby with Zimbra Mail and some other
> systems:
>
> Site URI: www.company.com/site <= localhost:80
> Zimbra Mail: www.company.com/site/mail <= localhost:81
> App XXX: www.company.com/site/xxx <= localhost:XX

You want a proxy.

> As i understand it's possible to do with Unix Port Forwarding

Nope.

> and Some
> Apache Machinery,

Apache, or nginx, or perlbal, or...

You may find a proxy that someone has built on Rack, but you really don't want
to do this yourself. I'd recommend you just use nginx.