标签:
配置:
WSGIScriptAlias /var/www/wsgi-scripts/simple.wsgi
从上面看出,其实对于一个WSGI应用来说,它其实也是一个服务器端的程序,负责返回状态码以及头部和内容。def application(environ, start_response):output = ‘hello world’ status = ‘200 OK’ headers = [(‘Content-type:’, ‘text/plain’), (‘Content-length’, str(len(status)))] start_respnse(status, headers) return [output]
标签:
原文地址:http://www.cnblogs.com/leether/p/4323328.html