nginx小总结(八)

nginx连接python

nginx连接python需要uWSGI服务器

http://projects.unbit.it/downloads/在这个里面下载新的版本!

[root@host2 ~]# tar zxf uwsgi-1.4.9.tar.gz

[root@host2 uwsgi-1.4.9]# yum install python-devel

[root@host2 uwsgi-1.4.9]# make

现在已经安装好,安装信息

############## end of uWSGI configuration #############
*** uWSGI is ready, launch it with ./uwsgi ***

[root@host2 uwsgi-1.4.9]# ./uwsgi -s 127.0.0.1:1717           开启uwsgi服务,并绑定本地的

[root@host2 uwsgi-1.4.9]# netstat -antpl | grep 1717
tcp        0      0 127.0.0.1:1717              0.0.0.0:*                   LISTEN      3483/uwsgi
这个服务器功能很强大,参数很多,大家可以参见陶利军编著《决战nginx》!里面介绍的很多!

然后重新编译一下nginx

[root@host2 nginx-1.3.13]#  ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --add-module=../uwsgi-1.4.9/nginx/

添加一个uwsgi模块,而这个模块在uwsgi的包里面有!

注意:在nginx的0.8.40之后,已经在模块中,不许要添加,刚刚没有发现,然后果断make出错!!

nginx http uwsgi temporary files: "uwsgi_temp"     编译后会显示的!

[root@host2 nginx-1.3.13]# make && make install

http://www.cnblogs.com/geekma/archive/2013/02/22/2921952.html这个是别人的博客,总结的很不错。贴在这

你可能感兴趣的:(nginx小总结(八))