On Mar 29, 11:05 am, Mike Orr <[email protected]> wrote:
> On Sat, Mar 28, 2009 at 4:42 PM, jose <[email protected]> wrote:
> > So this brings me to the heart of what I've learned, if you are going
> > to deploy a long running app how do you do it?
>
> I put all my Pylons and Quixote apps under Supervisord, with Apache
> mod_proxy.  I want to try nginx when I have a chance.
>
> Some people prefermod_wsgibecause it runs everything under Apache
> processes, but I like being able to "supervisor stop" and "supervisor
> start" individual applications for maintenance and debugging,

One can use signals to mod_wsgi daemon mode processes to restart them,
as well as just touch the WSGI script file.

It is only when you want to add or remove a completely new mod_wsgi
daemon mode process that you need to 'restart' Apache after having
done suitable configuration change.

> plus seeing them under their own names in the ps listing.

The display-name option to WSGIDaemonProcess directive in mod_wsgi
daemon mode allows you to assign it a name which shows in 'ps' output.

Graham
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to