我正在使用 Ubuntu 12.04 LTS。
我在 /home/server/ 下创建了一个 django 项目
这是我添加到我的 httpd.conf 中的内容:
WSGIScriptAlias / /home/server/my_server/wsgi.py
WSGIPythonPath /home/server/
<Directory /home/server/>
<Files wsgi.py>
Order deny,allow
Allow from all
</Files>
</Directory>
问题是,当我访问本地主机时,它说
Forbidden
You don't have permission to access / on this server.
非常感谢。