On 2/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Do I need to check on some settings in Apache? Perhaps > there is a configuration setting for Apache more suitable for a > developement environment that causes instances not to hang around for > so long?
CherryPy is not designed to be run under mod_python in development mode. mod_python is a production-only environment and if you make a change, you should reload apache. For development, the cherrypy internal server works just fine. > Or, despite the fact that you *can* run TG under mod_python, is that > really not advisable? What would the ideal setup be? We wanted to run > TG under Apache here at work because Apache is so well known, it kind > of lends credability to TG, which isn't out of beta yet. That, and all > our other development sites are running under Apache. For production, I've been running Apache as a proxy using mod_proxy and mod_rewrite. I configure apache to handle the ssl and serve static files. This is how it's done at python_hosting.com (where the owner is a cherrypy dev).

