我正在使用ubuntu 12.04,并且执行了以下操作:
须藤apt-get install python-mysql
sudo python setup.py install(安装Django 1.6.2)
须藤apt-get install mysql-server -...
须藤apt-get install apache2
须藤apt-get install libapache2-mod-wsgi
这是我的配置文件:
/home/firstweb.wsgi:
import os
import sys
sys.path = ['/var/www/firstweb'] + sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'firstweb.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
/etc/apache/sites-availables/firstweb.conf:
<VirtualHost *:80>
WSGIScriptAlias / /home/adel/firstweb.wsgi
ServerName firstweb.com
Alias /static /var/www/firstweb/static/
<Directory /var/www/firstweb/>
order allow,deny
Allow from all
</Directory>
</VirtualHost>
然后我做了:
a2ensite firstweb.conf
cd /var/www/
django-admin.py startproject firstweb
apachectl restart
vi /etc/hosts
并添加以下内容(
192.168.0.123
是我的wlan ip)192.168.0.123 firstweb.com
我使用mysql并创建数据库并更改
settings.py
,而syncdb
正常运行但是,当我在浏览器中输入www.firstweb.com时,将显示Apache的默认页面(有效。。。)
并且Django默认页面没有出现!
我的配置有什么问题?
谢谢。
最佳答案
您的虚拟服务器没有在www.firstweb.com上监听,而仅在firstweb.com上监听。您应该为www版本添加ServerAlias指令。
关于python - 无法使用apache mod WSGI在ubuntu上部署Django,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22271104/