From: Robert Klemme Date: 2007-01-13T08:20:09+09:00 Subject: Re: Running Webrick alongside IIS on port 80 On 12.01.2007 23:47, Prashant Deva wrote: > Hi, > I am hosting a couple of asp.net sites on IIS on my server. > > Now I need to host another site in ruby on the same machine. For this I > guess i will need to run the webrick server. > > Can anyone tell me how to have both iis and webrick running on port 80, > otherwise people will need to add the port 3000 to the site name each > time they visit the ruby site. Um, you cannot have to processes listen on the same port on one interface. You either have to resort to using a different port with WebRick (hopefully this is not a production server) or you make IIS serve Ruby code. You can certainly do this with CGI. I do not know whether there is better (faster) integration available for this web server (FastCGI?). Another solution is to configure a redirect in IIS that sends certain URL's off to the WebRick server on another port. Lots of options... Kind regards robert