Nginx + uWSGI基本配置

时间:2012-08-07 10:55:19

标签: django ubuntu nginx uwsgi

我是两个新手,我必须使用Emperor运行2个Django骨架应用程序(只显示“它工作!”页面),但我想尝试没有 Emperor。 (为了更好地理解它是如何工作的)

我的nginx.conf:

# snipped...
server { 
  listen 92; 
  server_name example.com; 
  access_log /home/john/www/example.com/logs/access.log; 
  error_log /home/john/www/example.com/logs/error.log; 

  location / { 
    include uwsgi_params; 
    uwsgi_pass 127.0.0.1:8001; 
  } 
}
# snipped...

我通过以下方式启动uWSGI:

$ uwsgi --ini /home/john/www/example.com/uwsgi.ini

uwsgi.ini是:

[uwsgi]
http = :8001
chdir = /home/john/www/example.com/example
module = example.wsgi
master = True
home = /home/john/Envs/example.com

uwsgi和nginx运行后,我可以访问localhost:8001,但不能访问localhost:92

我错过了什么?

提前致谢。

1 个答案:

答案 0 :(得分:1)

您告诉uwsgi进程使用http协议为应用程序提供服务。此功能主要是为了方便开发人员。你应该告诉它使用uwsgi协议:

[uwsgi]
protocol = uwsgi
socket = 127.0.0.1:8001
chdir = /home/john/www/example.com/example
module = example.wsgi
master = True
home = /home/john/Envs/example.com