--
You received this message because you are subscribed to the Google Groups "pylons-discuss" group.
To post to this group, send email to pylons-...@googlegroups.com.
To unsubscribe from this group, send email to pylons-discus...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
On 09/03/12 00:27, Jonathan Vanasco wrote:
> Not talking about Pyramid / WSGI layer itself...
>
> Assuming that these are just "skinning" a platform for customers, I
> would keep away from running each application on a separate IP and try
> to handle them via virtualhosts. The rationale for this is:
> 1. It's easier to step& repeat for new clients
we use uWSGI (http://projects.unbit.it/uwsgi/) behind varnish.
uWSGI serves static files and the pyramid apps. Varnish talks directly
to uWSGI via HTTP.
If you use nginx for proxying/balancing/static files/whatever you can
set it up to use the uwsgi protocol (nginx has the handler included
since 0.8.40 IIRC)
Giacomo