使用Apache2作为django网站服务器

花费了一些时间配置Apache2,在此将一些配置信息贴上,以作备忘.

整体采用的是Apache2 + mod-python + django 的方式.

采用虚拟主机方式,在apache2目录中的sites-available中添加了一个网站的配置文件westlake,如下所示:
LoadModule python_module /usr/lib/apache2/modules/mod_python.so
LoadModule xsendfile_module /usr/lib/apache2/modules/mod_xsendfile.so

XSendFile On
XSendFileAllowAbove on

<VirtualHost *:10080>
ServerName 10.10.1.239:10080
DocumentRoot /home/work/project/westlake

<Location "/">
SetHandler mod_python
PythonHandler django.core.handlers.modpython
PythonPath "['/home/work/project/', '/home/work/project/westlake/', '/home/work/project/westlake/eggs/satchmo/'] + sys.path"
SetEnv DJANGO_SETTINGS_MODULE westlake.settings
PythonInterpreter westlake
PythonDebug On
</Location>

Alias /static "/home/work/project/westlake/skins/second/static"
<Location "/static/">
SetHandler None
</Location>

</VirtualHost>


因为使用10080端口,所以在ports.conf文件中添加端口侦听:
Listen 10080


运行以下命令式配置生效:
a2ensite westlake


重启服务:
sudo /etc/init.d/apache2 restart


搞定。。。

你可能感兴趣的:(linux,python,django)