I have a VPS running a fresh install of Ubuntu 10.04 LTS. I'm trying to set up a live application using the Flask microframework, but it's giving me trouble. I took notes while I tried to get it running and here's my play-by-play in an effort to pinpoint exactly where I went wrong.
INSTALLATION
http://flask.pocoo.org/docs/installation/#installation
$ adduser dchuck
$ sudo apt-get install python-setuptools
$ sudo easy_install pip
$ sudo pip install virtualenv
/home/dchuck/
-- www/
$ sudo pip install virtualenv
/home/dchuck/
-- www/
-- env/
$ . env/bin/activate
$ easy_install Flask
MOD_WSGI
http://flask.pocoo.org/docs/deploying/mod_wsgi/
$ sudo apt-get install apache2
$ sudo apt-get install libapache2-mod-wsgi
Creating WSGI file
$ nano /home/dchuck/www/dchuck.wsgi
--dchuck.wsgi contents:--------------------------
activate_this = '/home/dchuck/env/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
from dchuck import app as application
/home/dchuck/
-- www/
-- dchuck.wsgi
-- env/
Configuring Apache
$ nano /etc/apache2/sites-available/dchuck.com
-----dchuck.com file contents ---------------------
<VirtualHost *:80>
ServerName dchuck.com
WSGIDaemonProcess dchuck user=dchuck group=dchuck threads=5 python-path=/home/dchuck/env/lib/python2.6/site-packages
WSGIScriptAlias / /home/dchuck/www/dchuck.wsgi
<Directory /home/dchuck/www>
WSGIProcessGroup dchuck
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
Enable the virtual host file I just created
$ cd /etc/apache2/sites-enabled
$ ln -s ../sites-available/dchuck.com
Restart Apache
$ /etc/init.d/apache2 restart
Servers me a 500 server error page. Here's the latest error log:
mod_wsgi (pid=3514): Target WSGI script '/home/dchuck/www/dchuck.wsgi' cannot be loaded as Python module.
mod_wsgi (pid=3514): Exception occurred processing WSGI script '/home/dchuck/www/dchuck.wsgi'.
Traceback (most recent call last):
File "/home/dchuck/www/dchuck.wsgi", line 4, in <module>
from dchuck import app as application
ImportError: No module named dchuck
The errors allude that it's something strikingly obvious, but I'm quite lost.
cat? It prints out the contents of a file (so in this log it would produce what you've copied out ofnanoautomatically) – Chris Morgan Dec 12 '10 at 12:20