> Is there any reason why you run mod_wsgi? When I run WSGI apps, I > typically use nginx frontend with bjoern WSGI server. It's much > simpler to set up, and also very reliable combo. > > Bjoern server is started from within your app (just like the built-in > cherrypy sever) with just this one line: > > bjoern.run(wsgi_application, host, port) > > You typically start it on 127.0.0.1:XXX and then reverse-proxy nginx > to that address so that requests from users go through nginx. You also > let nginx serve statics at the same time, and nginx is very good at > statics, so it's a very good combo.
Sorry, I don't think reverse-proxying a server internal to the app to the outside world is a simple setup. :)) It might be a nice option for people needing speed optimized setup. But actually most users would want to drop their project folder into a directory on some server and see it run. drx -- You received this message because you are subscribed to the Google Groups "web.py" 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/webpy?hl=en.
