9

我正在使用 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 指令中。一定是什么原因?

4

1 回答 1

15

根据文档WSGIPythonPath,使用守护程序模式时不能使用。改为使用WSGIDaemonProcess 指令的“python-path”选项。

于 2012-10-17T09:56:13.967 回答