作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 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>
最佳答案
您是否指定了python路径?如果不这样做, import mysite 将不起作用。
WSGIPythonPath /path/to/mysite.com
关于django - 如何在ubuntu上为django restful服务配置apache2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35844178/
我是一名优秀的程序员,十分优秀!