博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows下apache+wsgi+web.py环境搭建
阅读量:6141 次
发布时间:2019-06-21

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

首先安装好wsgi模块并启用:

1.下载地址:我本机是python2.7  
2.把mod_wsgi-win32-ap22py27-3.3.so放到apache安装目录下的modules目录下
3.打开 http.conf
添加:LoadModule wsgi_module modules/mod_wsgi-win32-ap22py27-3.3.so

下载安装web.py模块:

easy_install -U web.py

或者手动下载安装:

1.下载地址: 

2.解压到任意目录,进入目录python setup.py install,安装完毕后打开idle编辑器测试是否安装成功:

>>> import web	>>> urls= ('/','index')	>>> app = web.application(urls,globals())	>>> class index:		def GET(self):			return 'hello world!' 	>>> app.run()

  

在浏览器中浏览127.0.0.1:8080,查看是否能正常显示

开始设置

比如我以后想把试用web.py的程序都放在d:\develop\webapp目录下,并且访问连接为:127.0.0.1/webapp

配置如下:

LoadModule wsgi_module modules/mod_wsgi.soWSGIScriptAlias /webapp "D:/develop/webapp/index.py/"Alias /webapp/static "D:/develop/webapp/static/"AddType text/html .py
AllowOverride all Options Indexes FollowSymLinks ExecCGI Order allow,deny SetHandler wsgi-script Allow from all

  

重启apache。

测试是否成功:

编辑:d:/develop/webapp/index.py文件:

import weburls = ('/','index') class index:    def GET(self):        return "hello world!" app = web.application(urls, globals(), autoreload=False)application = app.wsgifunc()

  访问http://localhost/webapp, 配置完毕。

转载地址:http://mucya.baihongyu.com/

你可能感兴趣的文章
luov之SMTP报错详解
查看>>
软件概要设计做什么,怎么做
查看>>
dwr
查看>>
java的特殊符号
查看>>
word2010中去掉红色波浪线的方法
查看>>
fabric上下文管理器(context mangers)
查看>>
JQuery-EasyUI Datagrid数据行鼠标悬停/离开事件(onMouseOver/onMouseOut)
查看>>
并发和并行的区别
查看>>
php小知识
查看>>
Windows下安装、运行Lua
查看>>
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解(二)
查看>>
初识中间件之消息队列
查看>>
MyBatis学习总结(三)——优化MyBatis配置文件中的配置
查看>>
Spring常用注解
查看>>
我的友情链接
查看>>
PCS子层有什么用?
查看>>
查看端口,关闭端口
查看>>
代码托管平台简介
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>