Re: how to use WSGI applications with apache

2009-10-07 Thread Christian Heimes
Chris Colbert wrote: > if you want to use it with apapache, you need mod_wsgi. Or you can use mod_proxy alone or with mod_rewrite if you want to stick to the builtin webserver of cherrypy. Christian -- http://mail.python.org/mailman/listinfo/python-list

Re: how to use WSGI applications with apache

2009-10-07 Thread Paul Rudin
travis+ml-pyt...@subspacefield.org writes: > Hi folks, > > I'm not quite sure where to ask this, but this is my closest guess. > > I've written a web service based on the newf micro-framework and it uses > wsgiref.simple_server. I'm noticing that it's not returning response > codes properly (afte

Re: how to use WSGI applications with apache

2009-10-07 Thread Chris Colbert
if you want to use it with apapache, you need mod_wsgi. If you want a pure python solution, you can use the wsgi server that comes with CherryPy. Personally, I use the wsgi server in CherrPy on my website. My site is not large by any means and the ease of deployment completely erased any benefit

how to use WSGI applications with apache

2009-10-07 Thread travis+ml-python
Hi folks, I'm not quite sure where to ask this, but this is my closest guess. I've written a web service based on the newf micro-framework and it uses wsgiref.simple_server. I'm noticing that it's not returning response codes properly (after fixing a bug in newf). Instead, it just closes the TC