On Apr 19, 6:28 pm, Alex <[email protected]> wrote: > Does anyone have any advice on hosting multiple Pylons apps in a low > memory environment like a VPS. I've written a few apps using Pylons > and it's great, so I'd like to use it for more. However the stuff I've > used it for so far has justified running the apps on servers of their > own, so I've been running them using paste behind lighty. However this > seems to need quite a bit of RAM. I'd like to be able to host quite a > few low traffic volume apps on the same VPS, but it seems that running > several paste instances wouldn't be possible in the same way it's > possible to host lots of low traffic PHP apps behind Apache and > mod_php.
mod_wsgi is one method. http://pylonsbook.com/en/1.1/deployment.html#setting-up-a-virtual-host nginx -> uwsgi -> pylons http://tonylandis.com/python/deployment-howt-pylons-nginx-and-uwsgi/ word of note, 0.9.5-rc1 had a few issues There is also cherokee which has native uwsgi support I believe lighttpd also has support for uwsgi. You can also use fcgi/flup to deploy pylons projects -- 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.
