作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 mod_wsgi 在 Apache2 上部署我的 web.py 应用程序。
这是我的 virt_host 文件,
WSGIPythonPath /home/ubuntu/plotwatt/libplotwatt:/home/ubuntu/plotwatt/pwstage/src
<VirtualHost *:20108>
ServerAdmin gslabrails.dev.plotwatt.com
DocumentRoot /var/www
WSGIScriptAlias / /var/www/currentcost/server.py
WSGIDaemonProcess currentcost user=ubuntu group=ubuntu processes=5 threads=3
WSGIProcessGroup currentcost
WSGIApplicationGroup %{GLOBAL}
AddType text/html .py
<Directory /var/www/currentcost/>
Order deny,allow
Allow from all
</Directory>
ErrorLog /var/log/apache2/currentcost_error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/currentcost_access.log combined
</VirtualHost>
我已经在 WSGIPythonPath 中给出了名为 redisStage 的库的路径。但是,它似乎对我不起作用。我在做任何错误的配置吗?我不能将 WSGIPythonPath 指令放在 VitualHost 指令中。一定是什么原因?
最佳答案
根据 the docs ,在使用守护进程模式时不能使用 WSGIPythonPath
。使用 WSGIDaemonProcess directive 的“python-path”选项相反。
关于python - WSGIPythonPath 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12931013/
我正在使用 mod_wsgi 在 Apache2 上部署我的 web.py 应用程序。 这是我的 virt_host 文件, WSGIPythonPath /home/ubuntu/plotwatt/
Windows 8.1 x64 - Python 3.4.1 (pyzo_distro-2014a.win64) - Apache httpd-2.4.10-win64 - mod_wsgi-3.5.
我是一名优秀的程序员,十分优秀!