如何配置python+uwsgi+nginx?

3 投票
1 回答
1934 浏览
提问于 2025-04-17 17:43

我正在尝试用uwsgi和nginx运行一个python脚本。

在浏览器中出现了这个错误:

uWSGI Error
Python application not found

var/log/uwsgi/app/pyec.loc.log 文件中,有以下内容:

Sun Mar  3 01:34:36 2013 - added /home/lunochkinma/py_projects/pyec/ to pythonpath.
Sun Mar  3 01:34:36 2013 - mounting hello on /home/lunochkinma/py_projects/pyec/
Sun Mar  3 01:34:36 2013 - *** no app loaded. going in full dynamic mode ***
Sun Mar  3 01:34:36 2013 - *** uWSGI is running in multiple interpreter mode ***

我的uwsgi应用配置:

<uwsgi>
        <plugin>python</plugin>
        <socket>/run/uwsgi/app/pyec.loc/pyec.loc.socket</socket>
        <pythonpath>/home/lunochkinma/py_projects/pyec</pythonpath>
        <app mountpoint="/">
                <script>hello</script>
        </app>
        <master/>
        <processes>4</processes>
        <harakiri>60</harakiri>
        <reload-mercy>8</reload-mercy>
        <cpu-affinity>1</cpu-affinity>
        <stats>/tmp/stats.socket</stats>
        <max-requests>2000</max-requests>
        <limit-as>512</limit-as>
        <reload-on-as>256</reload-on-as>
        <reload-on-rss>192</reload-on-rss>
        <no-orphans/>
        <vacuum/>
</uwsgi>

Python的wsgi文件:

# /home/lunochkinma/py_projects/pyec/hello.py

def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/plain')])
    return b'Hello World!'

Nginx的配置:

server {
        listen 80;
        server_name paec.loc;
        access_log /var/log/nginx/pyec.loc.access.log;
        error_log /var/log/nginx/pyec.loc.error.log;
        location / {
                uwsgi_pass unix:///run/uwsgi/app/pyec.loc/pyec.loc.socket;
                include uwsgi_params;
                uwsgi_param UWSGI_SCHEME $scheme;
                uwsgi_param SERVER_SOFTWARE nginx/$nginx_version;
        }
        location /static {
                root /home/lunochkinma/py_projects/pyec/static/;
                index index.html index.htm;
        }
}

软件环境:ubuntu 12.04,nginx 1.2.1,uwsgi 1.4.8,python 3.2.3

1 个回答

0

(在问题编辑中回答。已转换为社区维基答案。请参见当问题的答案被添加到问题本身时,适当的行动是什么?

提问者写道:

这个问题通过在uwsgi应用的配置参数中添加“module”来解决:

<uwsgi>
        <plugin>python</plugin>
        <socket>/run/uwsgi/app/pyec.loc/pyec.loc.socket</socket>
        <pythonpath>/home/lunochkinma/py_projects/pyec</pythonpath>
        <app mountpoint="/">
                <script>hello</script>
        </app>
        <module>hello</module>
        <master/>
        <processes>4</processes>
        <harakiri>60</harakiri>
        <reload-mercy>8</reload-mercy>
        <cpu-affinity>1</cpu-affinity>
        <stats>/tmp/stats.socket</stats>
        <max-requests>2000</max-requests>
        <limit-as>512</limit-as>
        <reload-on-as>256</reload-on-as>
        <reload-on-rss>192</reload-on-rss>
        <no-orphans/>
        <vacuum/>
</uwsgi>

撰写回答