WSGIPythonPath不工作(WSGIPythonPath is not working)

2019-08-01 13:11发布

我上的Apache2部署我的web.py应用与mod_wsgi的。

这里是我的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>

我已经给路径我的lib中WSGIPythonPath命名redisStage。 但是,这似乎不是为我工作。 我在作出任何错误的配置? 我不能把WSGIPythonPath指令VitualHost指令内。 什么必须的原因是什么?

Answer 1:

根据该文件 ,则不能使用WSGIPythonPath使用daemon模式时。 使用“蟒蛇路径”选项来WSGIDaemonProcess指令代替。



文章来源: WSGIPythonPath is not working