Django Apache安装问题

时间:2019-03-20 23:34:37

标签: django apache

我正在尝试在服务器中部署应用程序。

我具有以下配置

Django 1.10 阿帕奇2.4 红帽企业版Linux服务器7.6(Maipo)

我按照Django文档https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/modwsgi/

中提到的说明进行操作

我的Apache配置看起来像这样

WSGIPythonHome /usr/local/test

WSGIScriptAlias / /usr/local/app/test/test/wsgi.py
WSGIPythonPath /usr/local/app/test
<Directory /usr/local/app/test/test>
        <Files wsgi.py>
                Require all granted
        </Files>
</Directory>

Alias /static /usr/local/app/test/static
<Directory /usr/local/app/test/static>
        Require all granted
</Directory>

Alias /media /usr/local/app/test/media
<Directory /usr/local/app/test/media>
        Require all granted
</Directory>

但是该应用程序似乎无法正常工作。而是显示

  

您无权查看“ / test”错误403错误。

0 个答案:

没有答案