Django和Python uWSGI

前端之家收集整理的这篇文章主要介绍了Django和Python uWSGI前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用instruction我尝试连接Python uWSGI.

我在一个文件夹/ home / sanya / django / pasteurl中创建了默认项目.
但是,在我得到的浏览器中打开它

uWSGI Error
wsgi application not found

日志包含以下内容

binding on TCP port: 9001
your server socket listen backlog is limited to 64 connections
added /home/sanya/django/pasteurl to pythonpath.
initializing hooks...done.
...getting the applications list from the 'django' module...
uwsgi.applications dictionary is not defined,trying with the "applications" one...
applications dictionary is not defined,trying with the "application" callable.
static applications not defined,you have to use the dynamic one...
spawned uWSGI master process (pid: 7637)
spawned uWSGI worker 1 (pid: 7646)
spawned uWSGI worker 2 (pid: 7647)
spawned uWSGI worker 3 (pid: 7648)
spawned uWSGI worker 4 (pid: 7649)

文件/home/sanya/django/pasteurl/django.wsgi

import os
import django.core.handlers.wsgi

# init django settings
os.environ['DJANGO_SETTINGS_MODULE'] = 'pasteurl.settings'

# define wsgi app
application = django.core.handlers.wsgi.WSGIHandler()

# mount this application at the webroot
# applications = { '/': 'application' }

我意识到,这个应用程序字典出了问题

FWIW,从1997年开始查看source code,我们看到如果无法找到应用程序字典,uWSGI会发出您正在接收的错误消息的确切序列.

看看你的django.wsgi文件,我们看到了这一行,

`applications = {'/': 'application'} 

被注释掉了.我想知道我们能做些什么;)

顺便说一下,我使用google找到了源代码.在引号中搜索错误消息通常是件好事.点击该链接后发现我很幸运能够直接从谷歌找到源代码(越来越多),我按下Ctrl-F进行“在页面上查找”并在我的浏览器中重新输入错误消息在页面搜索工具,我直接到相关的线路.

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

猜你在找的Nginx相关文章