gpt4 book ai didi

django - 如何在ubuntu上为django restful服务配置apache2

转载 作者:行者123 更新时间:2023-12-03 17:41:09 26 4
gpt4 key购买 nike

我的 ubuntu 服务器上有 django restful 服务,它们在端口 84 上运行。

当请求被发送时,它来自运行在端口 80 上的 apache2 服务器。

现在假设我的服务器 IP 是“xx.xx.xx.10”,当我用这个 url 调用时 http://xx.xx.xx.10/user其中 user 是在端口 84 上的 django rest 框架上运行的 rest 服务。然后请求应该通过 apache2 转到我的 django rest 服务并返回所需的输出。

我尝试在 apache2 中使用以下配置:-

    <VirtualHost *:80>
WSGIScriptAlias / /myproject/myapp/test/wsgi.py
<Directory "/myproject/myapp/test/">
<Files "wsgi.py">
Require all granted
</Files>
</Directory>
</VirtualHost>

但这给出了内部错误,说 test.settings 不存在。

这是配置在apache服务器上不同端口上运行的restful服务的正确方法吗?

最佳答案

您是否指定了python路径?如果不这样做, import mysite 将不起作用。

WSGIPythonPath /path/to/mysite.com

更多信息请参见: Django docs modWSGI

关于django - 如何在ubuntu上为django restful服务配置apache2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35844178/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com