Re: Trying to understand about Paste and web-server requirements

2007-07-27 Thread emery_c
On Jul 25, 11:25 pm, __wyatt [EMAIL PROTECTED] wrote: On Jul 25, 4:04 pm, walterbyrd [EMAIL PROTECTED] wrote: This really depends on what options your hosting company offers. You should check with them. Once you know what options are available, I'm sure many people here would be glad to

Re: Trying to understand about Paste and web-server requirements

2007-07-26 Thread Antonio Beamud Montero
El mié, 25-07-2007 a las 19:08 -0700, Jose Galvez escribió: no you should be able to use mod_proxy, to server your application just as Cliff has suggested. That is my personally favorite method to use with apache. Jose I think apache/mod_wsgi is the way :) Greetings

Re: Trying to understand about Paste and web-server requirements

2007-07-26 Thread Jose Galvez
I've never used mod_wsgi, how do you set it up? Jose On 7/26/07, Antonio Beamud Montero [EMAIL PROTECTED] wrote: El mié, 25-07-2007 a las 19:08 -0700, Jose Galvez escribió: no you should be able to use mod_proxy, to server your application just as Cliff has suggested. That is my

Re: Trying to understand about Paste and web-server requirements

2007-07-25 Thread walterbyrd
On Jul 25, 2:59 pm, Cliff Wells [EMAIL PROTECTED] wrote: It doesn't. Paste provides an HTTP server. You can let it serve directly, or, more likely, put it behind another HTTP server that can proxy (I personally recommend Nginx, but lots of people use Apache/mod_proxy or Lighttpd). But,

Re: Trying to understand about Paste and web-server requirements

2007-07-25 Thread Cliff Wells
On Wed, 2007-07-25 at 12:12 -0700, walterbyrd wrote: On So Pylons requires fastcgi or mod_python, just like django or turbogears. It should also be noted TurboGears doesn't require FastCGI or mod_python either, as CherryPy is both a framework and an HTTP server. Regards, Cliff

Re: Trying to understand about Paste and web-server requirements

2007-07-25 Thread Jose Galvez
no you should be able to use mod_proxy, to server your application just as Cliff has suggested. That is my personally favorite method to use with apache. Jose walterbyrd wrote: On Jul 25, 2:59 pm, Cliff Wells [EMAIL PROTECTED] wrote: It doesn't. Paste provides an HTTP server. You can

Re: Trying to understand about Paste and web-server requirements

2007-07-25 Thread Cliff Wells
On Wed, 2007-07-25 at 12:12 -0700, walterbyrd wrote: On Jul 25, 6:04 am, Thomas Sidwick [EMAIL PROTECTED] wrote: Paste provides the glue that sticks these components together in a stack and allows them to communicate. Paste also provides a library of ready made middleware that can

Re: Trying to understand about Paste and web-server requirements

2007-07-25 Thread __wyatt
On Jul 25, 4:04 pm, walterbyrd [EMAIL PROTECTED] wrote: On Jul 25, 2:59 pm, Cliff Wells [EMAIL PROTECTED] wrote: It doesn't. Paste provides an HTTP server. You can let it serve directly, or, more likely, put it behind another HTTP server that can proxy (I personally recommend Nginx,

Trying to understand about Paste and web-server requirements

2007-07-24 Thread walterbyrd
I've never used Pylons at all. I've just started reading about it. I'm trying to understand how Pylons uses Paste. Is Paste just a web- server to use for development? Or, is paste meant to be a replacement for apache? If paste is meant to be a replacement for apache, with that work with shared

Re: Trying to understand about Paste and web-server requirements

2007-07-24 Thread Jose Galvez
Ok here goes, PEP 333 (http://www.python.org/dev/peps/pep-0333/) laid out a simple and universal interface between web servers and web applications or frameworks: the Python Web Server Gateway Interface (WSGI). WSGI defines two basic aspects of the web interface, a server for interacting