Hi All, Just about to set up RoR on our server and was wondering what the ideal setup for RoR is these days? Apache 1? Apache 2? fCgi? Any guidance would be helpful! Thanks, -Adam
I''ve using Rails for the last 6 months and all the development and the production of my apps have been running with Lighttpd + FastCGI. I tried to install several time mod_fastcgi and found the process really complicated. So I switched to Lighttpd and FastCGI. Just my two cents, Francesc On Nov 6, 2005, at 2:53 PM, Adam Weisbart wrote:> Hi All, > > Just about to set up RoR on our server and was wondering what the > ideal setup for RoR is these days? Apache 1? Apache 2? fCgi? > > Any guidance would be helpful! > > Thanks, > > -Adam > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails
Can LightHTTPd be run concurrently with Apache2? I''m about to give up on mod_ruby and Apache2/FastCGI (frankly, I''m disappointed in the seeming difficulty to get Rails to work with these two options, if it works at all - both don''t seem to have much development behind them either). But I''m not willing to give up Apache2. Thanks, CSN --- Francesc Esplugas <francesc.esplugas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > I''ve using Rails for the last 6 months and all the > development and > the production of my apps have been running with > Lighttpd + FastCGI. > I tried to install several time mod_fastcgi and > found the process > really complicated. So I switched to Lighttpd and > FastCGI. > > Just my two cents, > > Francesc > > On Nov 6, 2005, at 2:53 PM, Adam Weisbart wrote: > > > Hi All, > > > > Just about to set up RoR on our server and was > wondering what the > > ideal setup for RoR is these days? Apache 1? > Apache 2? fCgi? > > > > Any guidance would be helpful! > > > > Thanks, > > > > -Adam > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >__________________________________ Yahoo! Mail - PC Magazine Editors'' Choice 2005 http://mail.yahoo.com
On 7 Nov 2005, at 08:58, CSN wrote:> > Can LightHTTPd be run concurrently with Apache2? I''m > about to give up on mod_ruby and Apache2/FastCGI > (frankly, I''m disappointed in the seeming difficulty > to get Rails to work with these two options, if it > works at all - both don''t seem to have much > development behind them either). But I''m not willing > to give up Apache2.Sure, run it on a different port and use mod_proxy to send the requests through. -- Phillip Hutchings phillip.hutchings-QrR4M9swfipWk0Htik3J/w@public.gmane.org _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
CSN- Yeah you can run apache and lighttpd at the same time. Usually when people do this they proxy lighttpd behond an apache vhost. Because lighttpd cannot bind to port 80 if apache is already using port 80. So you run lighttpd for your rails app on a higher port and proxy it through apache with a vhost like this: <VirtualHost *:80> ServerName example.com ServerAlias www.example.com ProxyPass / http://example.com:8000/ ProxyPassReverse / http://example.com:8000/ </VirtualHost> Then run your lioghttpd/rails app on port 8000 and you will be able to access the site with http://example.com without the port number tacked on the end. And since the forward and reverse proxy is set up the port number won''t ever end up being appended to the end of the url. Cheers- -Ezra On Nov 6, 2005, at 11:58 AM, CSN wrote:> > Can LightHTTPd be run concurrently with Apache2? I''m > about to give up on mod_ruby and Apache2/FastCGI > (frankly, I''m disappointed in the seeming difficulty > to get Rails to work with these two options, if it > works at all - both don''t seem to have much > development behind them either). But I''m not willing > to give up Apache2. > > Thanks, > CSN > > > --- Francesc Esplugas <francesc.esplugas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: > >> >> I''ve using Rails for the last 6 months and all the >> development and >> the production of my apps have been running with >> Lighttpd + FastCGI. >> I tried to install several time mod_fastcgi and >> found the process >> really complicated. So I switched to Lighttpd and >> FastCGI. >> >> Just my two cents, >> >> Francesc >> >> On Nov 6, 2005, at 2:53 PM, Adam Weisbart wrote: >> >>> Hi All, >>> >>> Just about to set up RoR on our server and was >> wondering what the >>> ideal setup for RoR is these days? Apache 1? >> Apache 2? fCgi? >>> >>> Any guidance would be helpful! >>> >>> Thanks, >>> >>> -Adam >>> _______________________________________________ >>> Rails mailing list >>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>> >> http://lists.rubyonrails.org/mailman/listinfo/rails >> >> _______________________________________________ >> Rails mailing list >> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails >> > > > > > > __________________________________ > Yahoo! Mail - PC Magazine Editors'' Choice 2005 > http://mail.yahoo.com > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-Ezra Zygmuntowicz WebMaster Yakima Herald-Republic Newspaper ezra-gdxLOakOTQ9oetBuM9ipNAC/G2K4zDHf@public.gmane.org 509-577-7732
Why don''t you try Apache/SCGI? Very easy to setup. http://www.zedshaw.com/projects/scgi_rails/ Cheers, Kevin On 11/6/05, CSN <cool_screen_name90001-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:> > > Can LightHTTPd be run concurrently with Apache2? I''m > about to give up on mod_ruby and Apache2/FastCGI > (frankly, I''m disappointed in the seeming difficulty > to get Rails to work with these two options, if it > works at all - both don''t seem to have much > development behind them either). But I''m not willing > to give up Apache2. > > Thanks, > CSN > > > --- Francesc Esplugas <francesc.esplugas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: > > > > > I''ve using Rails for the last 6 months and all the > > development and > > the production of my apps have been running with > > Lighttpd + FastCGI. > > I tried to install several time mod_fastcgi and > > found the process > > really complicated. So I switched to Lighttpd and > > FastCGI. > > > > Just my two cents, > > > > Francesc > > > > On Nov 6, 2005, at 2:53 PM, Adam Weisbart wrote: > > > > > Hi All, > > > > > > Just about to set up RoR on our server and was > > wondering what the > > > ideal setup for RoR is these days? Apache 1? > > Apache 2? fCgi? > > > > > > Any guidance would be helpful! > > > > > > Thanks, > > > > > > -Adam > > > _______________________________________________ > > > Rails mailing list > > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > > __________________________________ > Yahoo! Mail - PC Magazine Editors'' Choice 2005 > http://mail.yahoo.com > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >_______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Okay, but that''s not working either. I get this error: Application error (Apache) Change this error message for exceptions thrown outside of an action (like in Dispatcher setups or broken Ruby code) in public/500.html Over at jkraemer.net it has: DocumentRoot /your-switchtower-root/current/public I put instead: DocumentRoot /var/www/html/rails/public I have to install Switchtower too now? I''m about ready to give up on Rails - getting it to work with anything other than webrick (which is just for development, no?) is turning out to be a huge PITA. CSN --- K C <born70s-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Why don''t you try Apache/SCGI? Very easy to setup. > > http://www.zedshaw.com/projects/scgi_rails/ > > Cheers, > Kevin > > On 11/6/05, CSN <cool_screen_name90001-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> > wrote: > > > > > > Can LightHTTPd be run concurrently with Apache2? > I''m > > about to give up on mod_ruby and Apache2/FastCGI > > (frankly, I''m disappointed in the seeming > difficulty > > to get Rails to work with these two options, if it > > works at all - both don''t seem to have much > > development behind them either). But I''m not > willing > > to give up Apache2. > > > > Thanks, > > CSN > > > > > > --- Francesc Esplugas > <francesc.esplugas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > wrote: > > > > > > > > I''ve using Rails for the last 6 months and all > the > > > development and > > > the production of my apps have been running with > > > Lighttpd + FastCGI. > > > I tried to install several time mod_fastcgi and > > > found the process > > > really complicated. So I switched to Lighttpd > and > > > FastCGI. > > > > > > Just my two cents, > > > > > > Francesc > > > > > > On Nov 6, 2005, at 2:53 PM, Adam Weisbart wrote: > > > > > > > Hi All, > > > > > > > > Just about to set up RoR on our server and was > > > wondering what the > > > > ideal setup for RoR is these days? Apache 1? > > > Apache 2? fCgi? > > > > > > > > Any guidance would be helpful! > > > > > > > > Thanks, > > > > > > > > -Adam > > > > > _______________________________________________ > > > > Rails mailing list > > > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > > > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > _______________________________________________ > > > Rails mailing list > > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > > > > > > > > > __________________________________ > > Yahoo! Mail - PC Magazine Editors'' Choice 2005 > > http://mail.yahoo.com > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >__________________________________ Start your day with Yahoo! - Make it your home page! http://www.yahoo.com/r/hs
NM, I got it working! I found different instructions that mentioned doing ''scgi_ctrl config'' and ''scgi_ctrl start''. Third time was the charm (mod_ruby, fastcgi, scgi). Getting Rails working with webrick is a piece of cake. Figuring out how to get it working with other servers (Apache) is far more difficult to figure out - docs are piecemeal over many different web sites and it''s not obvious which technology (mod_ruby, fastcgi, scgi, lighthttpd, ...) should be used. CSN --- CSN <cool_screen_name90001-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:> > Okay, but that''s not working either. I get this > error: > > Application error (Apache) > Change this error message for exceptions thrown > outside of an action (like in Dispatcher setups or > broken Ruby code) in public/500.html > > Over at jkraemer.net it has: > DocumentRoot /your-switchtower-root/current/public > > I put instead: > DocumentRoot /var/www/html/rails/public > > I have to install Switchtower too now? I''m about > ready > to give up on Rails - getting it to work with > anything > other than webrick (which is just for development, > no?) is turning out to be a huge PITA. > > CSN > > > > --- K C <born70s-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Why don''t you try Apache/SCGI? Very easy to setup. > > > > http://www.zedshaw.com/projects/scgi_rails/ > > > > Cheers, > > Kevin > > > > On 11/6/05, CSN <cool_screen_name90001-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> > > wrote: > > > > > > > > > Can LightHTTPd be run concurrently with Apache2? > > I''m > > > about to give up on mod_ruby and Apache2/FastCGI > > > (frankly, I''m disappointed in the seeming > > difficulty > > > to get Rails to work with these two options, if > it > > > works at all - both don''t seem to have much > > > development behind them either). But I''m not > > willing > > > to give up Apache2. > > > > > > Thanks, > > > CSN > > > > > > > > > --- Francesc Esplugas > > <francesc.esplugas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > > wrote: > > > > > > > > > > > I''ve using Rails for the last 6 months and all > > the > > > > development and > > > > the production of my apps have been running > with > > > > Lighttpd + FastCGI. > > > > I tried to install several time mod_fastcgi > and > > > > found the process > > > > really complicated. So I switched to Lighttpd > > and > > > > FastCGI. > > > > > > > > Just my two cents, > > > > > > > > Francesc > > > > > > > > On Nov 6, 2005, at 2:53 PM, Adam Weisbart > wrote: > > > > > > > > > Hi All, > > > > > > > > > > Just about to set up RoR on our server and > was > > > > wondering what the > > > > > ideal setup for RoR is these days? Apache 1? > > > > Apache 2? fCgi? > > > > > > > > > > Any guidance would be helpful! > > > > > > > > > > Thanks, > > > > > > > > > > -Adam > > > > > > > _______________________________________________ > > > > > Rails mailing list > > > > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > > > > > > > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > > > _______________________________________________ > > > > Rails mailing list > > > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > > > > > > > > > > > > > > > > __________________________________ > > > Yahoo! Mail - PC Magazine Editors'' Choice 2005 > > > http://mail.yahoo.com > > > _______________________________________________ > > > Rails mailing list > > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > __________________________________ > Start your day with Yahoo! - Make it your home page! > > http://www.yahoo.com/r/hs >__________________________________ Start your day with Yahoo! - Make it your home page! http://www.yahoo.com/r/hs
Am Sonntag, den 06.11.2005, 08:53 -0500 schrieb Adam Weisbart:> Just about to set up RoR on our server and was wondering what the > ideal setup for RoR is these days? Apache 1? Apache 2? fCgi?If you are on debina, look here: http://www.inlet-media.de/the-perfect-ruby-on-rails-with-apache2-and-fastcgi-setup-on-debian-sarge Ciao, Norman
Hence I gave up on Apache + FCGI, instead lighttpd helped. CSN wrote:> NM, I got it working! I found different instructions > that mentioned doing ''scgi_ctrl config'' and ''scgi_ctrl > start''. Third time was the charm (mod_ruby, fastcgi, > scgi). Getting Rails working with webrick is a piece > of cake. Figuring out how to get it working with other > servers (Apache) is far more difficult to figure out - > docs are piecemeal over many different web sites and > it''s not obvious which technology (mod_ruby, fastcgi, > scgi, lighthttpd, ...) should be used. > > CSN > > > --- CSN <cool_screen_name90001-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote: > > >>Okay, but that''s not working either. I get this >>error: >> >>Application error (Apache) >>Change this error message for exceptions thrown >>outside of an action (like in Dispatcher setups or >>broken Ruby code) in public/500.html >> >>Over at jkraemer.net it has: >>DocumentRoot /your-switchtower-root/current/public >> >>I put instead: >>DocumentRoot /var/www/html/rails/public >> >>I have to install Switchtower too now? I''m about >>ready >>to give up on Rails - getting it to work with >>anything >>other than webrick (which is just for development, >>no?) is turning out to be a huge PITA. >> >>CSN >> >> >> >>--- K C <born70s-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> >>>Why don''t you try Apache/SCGI? Very easy to setup. >>> >>>http://www.zedshaw.com/projects/scgi_rails/ >>> >>>Cheers, >>>Kevin >>> >>>On 11/6/05, CSN <cool_screen_name90001-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> >>>wrote: >>> >>>> >>>>Can LightHTTPd be run concurrently with Apache2? >>> >>>I''m >>> >>>>about to give up on mod_ruby and Apache2/FastCGI >>>>(frankly, I''m disappointed in the seeming >>> >>>difficulty >>> >>>>to get Rails to work with these two options, if >> >>it >> >>>>works at all - both don''t seem to have much >>>>development behind them either). But I''m not >>> >>>willing >>> >>>>to give up Apache2. >>>> >>>>Thanks, >>>>CSN >>>> >>>> >>>>--- Francesc Esplugas >>> >>><francesc.esplugas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >>> >>>>wrote: >>>> >>>> >>>>>I''ve using Rails for the last 6 months and all >>> >>>the >>> >>>>>development and >>>>>the production of my apps have been running >> >>with >> >>>>>Lighttpd + FastCGI. >>>>>I tried to install several time mod_fastcgi >> >>and >> >>>>>found the process >>>>>really complicated. So I switched to Lighttpd >>> >>>and >>> >>>>>FastCGI. >>>>> >>>>>Just my two cents, >>>>> >>>>>Francesc >>>>> >>>>>On Nov 6, 2005, at 2:53 PM, Adam Weisbart >> >>wrote: >> >>>>>>Hi All, >>>>>> >>>>>>Just about to set up RoR on our server and >> >>was >> >>>>>wondering what the >>>>> >>>>>>ideal setup for RoR is these days? Apache 1? >>>>> >>>>>Apache 2? fCgi? >>>>> >>>>>>Any guidance would be helpful! >>>>>> >>>>>>Thanks, >>>>>> >>>>>>-Adam >>>>>> >>> >>>_______________________________________________ >>> >>>>>>Rails mailing list >>>>>>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>>>>> >>>>> >>http://lists.rubyonrails.org/mailman/listinfo/rails >> >>>>> >>_______________________________________________ >> >>>>>Rails mailing list >>>>>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>>>> >>> >>http://lists.rubyonrails.org/mailman/listinfo/rails >> >>>> >>>> >>>> >>>> >>>>__________________________________ >>>>Yahoo! Mail - PC Magazine Editors'' Choice 2005 >>>>http://mail.yahoo.com >>>>_______________________________________________ >>>>Rails mailing list >>>>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>>> >>> >>http://lists.rubyonrails.org/mailman/listinfo/rails >> >>>>_______________________________________________ >>> >>>Rails mailing list >>>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>> >> >>http://lists.rubyonrails.org/mailman/listinfo/rails >> >> >> >> >>__________________________________ >>Start your day with Yahoo! - Make it your home page! >> >>http://www.yahoo.com/r/hs >> > > > > > > __________________________________ > Start your day with Yahoo! - Make it your home page! > http://www.yahoo.com/r/hs > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-- Aly S.P Dharshi aly.dharshi-EynCeXvFgoheoWH0uzbU5w@public.gmane.org "A good speech is like a good dress that''s short enough to be interesting and long enough to cover the subject"
Cool. One problem though - I have a passworded forward proxy setup and requests to my Rails site are getting prompted for a password. I can''t figure out how to let these requests through without requiring a password. Here''s what''s in my httpd.conf: <Proxy *> AuthType Basic AuthUserFile ... Require valid-user Order deny,allow Allow from x.x.x.x myrailsdomain.com Satisfy Any </Proxy> I thought perhaps the proxy passes would have the ip/domain of the server/site, but it doesn''t appear that way. Thanks, CSN --- Ezra Zygmuntowicz <ezra-gdxLOakOTQ9oetBuM9ipNAC/G2K4zDHf@public.gmane.org> wrote:> CSN- > > Yeah you can run apache and lighttpd at the same > time. Usually when > people do this they proxy lighttpd behond an apache > vhost. Because > lighttpd cannot bind to port 80 if apache is already > using port 80. > So you run lighttpd for your rails app on a higher > port and proxy it > through apache with a vhost like this: > > > <VirtualHost *:80> > ServerName example.com > ServerAlias www.example.com > ProxyPass / http://example.com:8000/ > ProxyPassReverse / http://example.com:8000/ > </VirtualHost> > > > Then run your lioghttpd/rails app on port 8000 and > you will be able > to access the site with http://example.com without > the port number > tacked on the end. And since the forward and reverse > proxy is set up > the port number won''t ever end up being appended to > the end of the url. > > > Cheers- > -Ezra > > > On Nov 6, 2005, at 11:58 AM, CSN wrote: > > > > > Can LightHTTPd be run concurrently with Apache2? > I''m > > about to give up on mod_ruby and Apache2/FastCGI > > (frankly, I''m disappointed in the seeming > difficulty > > to get Rails to work with these two options, if it > > works at all - both don''t seem to have much > > development behind them either). But I''m not > willing > > to give up Apache2. > > > > Thanks, > > CSN > > > > > > --- Francesc Esplugas > <francesc.esplugas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > wrote: > > > >> > >> I''ve using Rails for the last 6 months and all > the > >> development and > >> the production of my apps have been running with > >> Lighttpd + FastCGI. > >> I tried to install several time mod_fastcgi and > >> found the process > >> really complicated. So I switched to Lighttpd and > >> FastCGI. > >> > >> Just my two cents, > >> > >> Francesc > >> > >> On Nov 6, 2005, at 2:53 PM, Adam Weisbart wrote: > >> > >>> Hi All, > >>> > >>> Just about to set up RoR on our server and was > >> wondering what the > >>> ideal setup for RoR is these days? Apache 1? > >> Apache 2? fCgi? > >>> > >>> Any guidance would be helpful! > >>> > >>> Thanks, > >>> > >>> -Adam > >>> _______________________________________________ > >>> Rails mailing list > >>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > >>> > >> > http://lists.rubyonrails.org/mailman/listinfo/rails > >> > >> _______________________________________________ > >> Rails mailing list > >> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > >> > http://lists.rubyonrails.org/mailman/listinfo/rails > >> > > > > > > > > > > > > __________________________________ > > Yahoo! Mail - PC Magazine Editors'' Choice 2005 > > http://mail.yahoo.com > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > -Ezra Zygmuntowicz > WebMaster > Yakima Herald-Republic Newspaper > ezra-gdxLOakOTQ9oetBuM9ipNAC/G2K4zDHf@public.gmane.org > 509-577-7732 > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >__________________________________ Yahoo! FareChase: Search multiple travel sites in one click. http://farechase.yahoo.com
On 11/7/05, Aly Dharshi <aly.dharshi-EynCeXvFgoheoWH0uzbU5w@public.gmane.org> wrote:> Hence I gave up on Apache + FCGI, instead lighttpd helped.I use Debian and installed apache2 and fastcgid (not fastcgi) and it works like a charm. Debian packages, no compile needed.