Tagged Questions

6
votes
1answer
1k views

Web.py on dotcloud with wsgi

I'm trying to deploy my web.py app on dotcloud, but can't figure out how to do it. I went through this tutorial fine: http://docs.dotcloud.com/static/tutorials/firststeps/ And then I looked at ...
3
votes
3answers
2k views

Deploying a Web.py application with WSGI, several servers

I've created a web.py application, and now that it is ready to be deployed, I want to run in not on web.py's built-in webserver. I want to be able to run it on different webservers, Apache or IIS, ...
0
votes
1answer
59 views

Python Tornado Request Handler Mapping

I'm just getting started with Tornado and I was wondering how i can define a mapping so that all requests like below are are handled by a single handler. /products/list /products/find/123 ...
0
votes
1answer
152 views

Why call clearup code in generator function?

guys. I'm reading web.py source code to understand how WSGI frameworks work. When reading application.py module, I wonder why call self._cleanup in cleanup which is a generator function. I searched ...
0
votes
2answers
259 views

Decent error output in browser for wsgi/web.py

I'm using web.py 0.3 / apache2 / mod_wsgi and the cgitb module doesn't seem to work out of the box (I still just get 'internal server error' from web.py and the usual output goes to apache's ...