I'm a beginner with Pylons and I've mostly developed on my localhost using the built-in web server. I think it's time to start deployment for my personal blog, I have a Debian Lenny server with apache2-mpm-prefork module and mod_wsgi - I've never really used mod_wsgi or fastcgi and I hear either of these are the way to go.
My questions:
- Should I go with
mod_wsgiorfastcgiand why? - Where should I be creating my web application? Should I create an entirely new user for it? Should I store it in
/home/meder/web-app? I currently have some php websites being hosted on my server and they live in/www/which is a directory I created. Is there any sorta gotcha with static binary files such as images, as there is withdjango?