Python web服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python web服务器相关的知识,希望对你有一定的参考价值。

Python 配置wsgi接口
#
引入Python wsgi包 from wsgiref.simple_server import make_server # 撰写服务器端程序代码 def Application(envirn,start_response): start_response(200 ok,[(Content-Type,text/html)]) return <b>hello world</b> # 实例化一个监听8080端口的服务器 server = make_server(‘‘,8080,Application) # 开始监听http请求 server.serve_forever()

wsgi是将Python服务器端程序链接到web服务器的通用协议

Nginx+uwsgi配置

安装Nginx

brew install nginx 

brew services start nginx

技术分享

 

Nginx 配置文件

进入/usr/local/etc/nginx目录下,执行 sudo vim nginx.conf

参考:http://www.cnblogs.com/Lxiaolong/p/4201973.html 

安装uwsgi及配置

pip install uwsgi

参考:http://www.cnblogs.com/sky20081816/p/3398864.html


以上是关于Python web服务器的主要内容,如果未能解决你的问题,请参考以下文章

30 段 Python 实用代码

JAVA WEB代码片段

web代码片段

即学即用的 30 段 Python 实用代码

高效Web开发的10个jQuery代码片段

ini Web服务器安全性片段