apache+mod_wsgi+django配置

在不完全明白之前,看别人的帖子总是觉得是错的,等到弄懂以后,怎么看都是对的。

正题:

创新互联建站坚持“要么做到,要么别承诺”的工作理念,服务领域包括:成都做网站、成都网站制作、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的高安网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!

安装mod_wsgi,然后记得在http.conf文件里面添加以下一行:
LoadModule wsgi_module modules/mod_wsgi.so

此时的apache就是wsgi服务器了。也许有人会问什么是wsgi服务器。

# -*- coding: utf-8 -*- from wsgiref import simple_server def application(environ, start_response): status = \'200 OK\' output = \'Hello World!\' response_headers = [(\'Content-type\', \'text/plain\'), (\'Content-Length\', str(len(output)))] start_response(status, response_headers) return [output] # 下面两行就是简单的wsgi服务器 server = simple_server.make_server(\'localhost\', 8080, application) server.serve_forever()

注意这行:

server = simple_server.make_server(\'localhost\', 8080, application) 的参数application。这在apache里肯定无法编译进去,所以需要你在你的虚拟主机配置文件的
WSGIScriptAlias / /path/to/your/main.wsgi
行指出,而文件/path/to/your/main.wsgi的内容可能如下:

def application(environ, start_response): status = \'200 OK\' output = \'<h1>Hello World!</h1>\' response_headers = [(\'Content-type\', \'text/plain\'), (\'Content-Length\', str(len(output)))] start_response(status, response_headers) return [output] 或者
WSGIScriptAlias / /path/to/your/site/wsgi.py
然后wsgi.py就是django自动生成的文件。

标题名称:apache+mod_wsgi+django配置
当前路径:https://www.cdcxhl.com/article14/cggpde.html

成都网站建设公司_创新互联,为您提供响应式网站网站收录定制开发网站营销企业建站网页设计公司

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

小程序开发