Flask,Nginx,未找到uWSGI Python应用程序

前端之家收集整理的这篇文章主要介绍了Flask,Nginx,未找到uWSGI Python应用程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试设置Nginx,uWSGI和Flask.我现在正在,

uWSGI错误

找不到Python应用程序

我的uwsgi错误文件中有一些奇怪的错误,您可以在我的帖子底部找到它.

我会直接看到它,这是一个运行Ubuntu 13.04 64bit的新VPS,这些是我运行的命令.

> sudo apt-get update
> sudo apt-get install build-essential
> sudo apt-get install python-dev
> sudo apt-get install python-pip
> sudo apt-get install Nginx
> sudo apt-get install uwsgi
> sudo apt-get install uwsgi-plugin-python
> sudo pip install virtualenv

然后我创建了一个虚拟环境,激活它并运行pip install flask然后我创建了一个名为app的文件夹,并将一个名为hello.py的文件放在同一个文件夹中

/project
    /app
        -hello.py
    /bin
    /include
    /lib
    /local

这是我的Nginx文件(Nginx错误文件为空)

server {
    listen 80;

    server_name project.domain.net;

    location / {
        try_files $uri @app;
    }

    location @app {
        include uwsgi_params;
        uwsgi_pass unix:/tmp/uwsgi.sock;
    }

    location ~ /\. {
        deny all;
    }
}

这是我的uWSGI ini文件

[uwsgi]
chdir = /home/user/projects/python/flask/project
uid = www-data
gid = www-data
chmod-socket = 666
plugin = python
socket = /tmp/uwsgi.sock
module = run
callable = app
virtualenv = /home/user/projects/python/flask/project

这是我的hello.py文件

from flask import Flask
app = Flask(__name__)

@app.route("/")
def hello_word():
    return "Hello World!"

if __name__ == "__main__":
    app.run()

这是我的uWSGI错误文件https://p.kk7.me/sepukinulu.applescript它很长,所以我想我会把它粘贴在一个pastebin风格的网站上.如果不行,我可以编辑我的帖子以包含它.

任何帮助将不胜感激!

最佳答案
当您的脚本为’hello’时,您正在请求“运行”模块,事实上:

ImportError:没有名为run的模块

原文链接:https://www.f2er.com/nginx/434319.html

猜你在找的Nginx相关文章