欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
UWSGI
来自开放百科 - 灰狐
(版本间的差异)
小 (→Nginx) |
小 (→Install) |
||
第7行: | 第7行: | ||
make -f Makefile.Py27 | make -f Makefile.Py27 | ||
python uwsgiconfig.py --build | python uwsgiconfig.py --build | ||
− | ./uwsgi | + | touch /var/www/hello.py |
+ | def application(env, start_response): | ||
+ | start_response('200 OK', [('Content-Type','text/html')]) | ||
+ | return "Hello World" | ||
+ | uwsgi --http :9090 --wsgi-file /var/www/hello.py | ||
==Ngnix== | ==Ngnix== |
2011年12月13日 (二) 07:39的版本
uWSGI 是一个快速、纯C语言、用户友好的 WSGI 服务器,面向专业的 Python 开发者。
Install
make make -f Makefile.Py27 python uwsgiconfig.py --build touch /var/www/hello.py def application(env, start_response): start_response('200 OK', [('Content-Type','text/html')]) return "Hello World" uwsgi --http :9090 --wsgi-file /var/www/hello.py
Ngnix
链接
<discussion>characters_max=300</discussion>
分享您的观点