Hi Steve, Not so easy. You have three options (my experience): - cgi: very slow - fastcgi / mod_python: apache module; possible but quite difficult to setup
-> depends strongly on what your provider gives as options -> depends also if you have python2.4 pre-installed on your environment (if not, even more difficult) - running the paste application as http server and use apache as proxy After fiddling heavily with mod_python I finally gave up and did choose the proxy approach which was surprinsingly easy. But you'll need some priviliges on the server (shell access, the right to start processes, access to apache, mod_proxy etc). I know that others did succeed with mod_python or fastcgi, so you may take this approach. You'll find docu about this also in the pylons documentation. Just my 2cents, Andrew _______________________________________________ Paste-users mailing list [email protected] http://webwareforpython.org/cgi-bin/mailman/listinfo/paste-users
