Me thinks the docs might need a bit of fleshing out ;P http://mongrel.rubyforge.org/docs/mongrel_cluster.html At the very least, what vars can go in its config. Joe -- Posted via http://www.ruby-forum.com/.
Right now you find some references to docs about mongrel_cluster at (scroll down to boottom): http://mongrel.rubyforge.org/docs/index.html On 5/22/06, Joe <joe@yahoo.com> wrote:> > Me thinks the docs might need a bit of fleshing out ;P > > http://mongrel.rubyforge.org/docs/mongrel_cluster.html > > At the very least, what vars can go in its config. > > Joe > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Roberto Saccon -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060523/cc93c7dc/attachment.html
Joe wrote:> Me thinks the docs might need a bit of fleshing out ;Psame. ive been looking for info on how to serve public/ with mongrel.. so far, ive tried various things, including -r public, -r /absolute/path/to/pubic, about to try making up a mongrel.conf and setting a DirHandler for "." (hopefully this doesnt interfere with the existing controller stuff). i thought maybe it was just choking on symlinks, since dirs in /var/www are actually linked to /usr/local/src, or maybe a permissions thing, but seeing as other daemons can read the public files even running as ''nobody'' instead of root, that''s proably not it... -- Posted via http://www.ruby-forum.com/.
On Mon, 2006-05-22 at 22:36 +0200, Joe wrote:> Me thinks the docs might need a bit of fleshing out ;P > > http://mongrel.rubyforge.org/docs/mongrel_cluster.html > > At the very least, what vars can go in its config.Yeah, I''m writing those as fast as I can. All this week I''m pretty much unemploying myself so people can have a release, so stay tuned and they''ll come soon. -- Zed A. Shaw http://www.zedshaw.com/ http://mongrel.rubyforge.org/
just use mongrel it as you would use webrick. it just works. no configuration needed. If you have a special setup, take a look at the help options, if you move to production, just add mongrel-cluster, it also just works, and again the help options will inform you how, there is no special thing about symlinks and that stuff you mentioned ... On 5/23/06, cdr <carmen@whats-your.name> wrote:> > Joe wrote: > > Me thinks the docs might need a bit of fleshing out ;P > > same. ive been looking for info on how to serve public/ with mongrel.. > so far, ive tried various things, including -r public, -r > /absolute/path/to/pubic, about to try making up a mongrel.conf and > setting a DirHandler for "." (hopefully this doesnt interfere with the > existing controller stuff). > > i thought maybe it was just choking on symlinks, since dirs in /var/www > are actually linked to /usr/local/src, or maybe a permissions thing, but > seeing as other daemons can read the public files even running as > ''nobody'' instead of root, that''s proably not it... > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Roberto Saccon -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060523/9cdf820a/attachment.html
Hi Joe: On May 22, 2006, at 4:36 PM, Joe wrote:> Me thinks the docs might need a bit of fleshing out ;P > > http://mongrel.rubyforge.org/docs/mongrel_cluster.html > > At the very least, what vars can go in its config.You don''t need to mess with editing the config file at all. Just use the "cluster::configure" command and it will write the file for you. The command takes the same arguments as the "start" command and respects its default values. You can see all the options by doing "mongrel_rails cluster::configure -h". Example, 8 mongrels in production environment starting at port 8000 bound to localhost for use behind a balancer. Configure: mongrel_rails cluster::configure -p 8000 -e production -a 127.0.0.1 -N 8 Start: mongrel_rails cluster::start Stop: mongrel_rails cluster::stop If you don''t call these from RAILS_ROOT, then use "--chdir" to set RAILS_ROOT when configuring. You can also write the configuration file to a specfic directory using "--config". To start/stop use "-- config" to tell the command where to read the configuration from. Good luck, Bradley Taylor ------ Rails Machine Simplified Ruby on Rails application deployment http://railsmachine.com