博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apache+mod_wsgi+django配置
阅读量:6173 次
发布时间:2019-06-21

本文共 1220 字,大约阅读时间需要 4 分钟。

  hot3.png

在不完全明白之前,看别人的帖子总是觉得是错的,等到弄懂以后,怎么看都是对的。
正题:
安装mod_wsgi,然后记得在http.conf文件里面添加以下一行:
LoadModule wsgi_module modules/mod_wsgi.so

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

# -*- coding: utf-8 -*-from wsgiref import simple_serverdef 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 = '

Hello World!

' 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自动生成的文件。

转载于:https://my.oschina.net/rst/blog/127314

你可能感兴趣的文章
Tomcat问题汇总
查看>>
由于未预料的错误,现在无法使用nautilus
查看>>
业界最有价值的Linux资料大全(200篇)
查看>>
Arraylist动态扩容详解
查看>>
%cd%及%~dp0批处理命令的详解
查看>>
MySQL数据库负载很高连接数很多怎么处理
查看>>
关于延迟加载(lazy)和强制加载(Hibernate.initialize(Object proxy) )
查看>>
Cent OS 环境下 samba服务器的搭建
查看>>
vCloud Director 1.5.1 Install Procedure
查看>>
hive 中的多列进行group by查询方法
查看>>
Cisco统一通信---视频部分
查看>>
nginx编译及参数详解
查看>>
VMware下PM魔术分区使用教程
查看>>
nslookup错误
查看>>
我的友情链接
查看>>
Supported plattforms
查看>>
做自己喜欢的事情
查看>>
CRM安装(二)
查看>>
Eclipse工具进行Spring开发时,Spring配置文件智能提示需要安装STS插件
查看>>
NSURLCache内存缓存
查看>>