On Tue, Sep 28, 2010 at 10:45 AM, Diez B. Roggisch <[email protected]> wrote: > And if the latter... I'm still unsure what mod passenger can do there for you. > To me, it looks as if it's ruby only. >
If I understand correctly recent mod_passenger versions can actually run WSGI scripts. http://www.modrails.com/documentation/Users%20guide.html It actually looks for a passenger_wsgi.py file to get the WSGI application object. Actually if you have public users I do not suggest bringing down the application, but if you are the only one that uses them mod_wsgi can easily perform that by specifying inactivity-timeout=X option to the WSGIDaemonProcess. There is plenty of doc around on how to deploy tg2/pylons on mod_wsgi so I suggest you to use that one instead of mod_passenger. I had experience with passenger on RoR and while it has some really nice features, in the Python world mod_wsgi is the de facto standard so you will probably find more tutorials and answers by using it. Alessandro -- You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en.

