On 18/01/2011, at 15:01, Michiel van Es wrote: > If I want to run my own created Python scripts what should I do to enable > them on for example /scripts ?
There are many way to do it: - CGI: The oldest and slowest way. It's also the easiest for quick tests. - uWSGI: It's fast and very interesting for production environments. - FastCGI: A de-fact standard for httpd to back-end server bridges. - SCGI: FastCGI little brother. I personally love its simplicity. - HTTP: You could use Cherokee as a reverse proxy as well. It's up to you which one to use. All of them but the first requires to use a framework, or at least a Python module like PySCGI ( http://www.cherokee-project.com/download/pyscgi/ ). It depends on the framework you choose which protocols will be available. -- Octality http://www.octality.com/ _______________________________________________ Cherokee mailing list [email protected] http://lists.octality.com/listinfo/cherokee
