zoukankan      html  css  js  c++  java
  • 【转】windows下apache+wsgi+web.py环境搭建

    首先安装好wsgi模块并启用: 1.下载地址:我本机是python2.7  http://code.google.com/p/modwsgi/downloads/detail?name=mod_wsgi-win32-ap22py27-3.3.so 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.下载地址: http://webpy.org 2.解压到任意目录,进入目录python setup.py install,安装完毕后打开idle编辑器测试是否安装成功:

    1
    2
    3
    4
    5
    6
    7
    8
    >>> 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:developwebapp目录下,并且访问连接为:127.0.0.1/webapp 配置如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    LoadModule wsgi_module modules/mod_wsgi.so
     
    WSGIScriptAlias /webapp "D:/develop/webapp/index.py/"
     
    Alias /webapp/static "D:/develop/webapp/static/"
    AddType text/html .py
     
    <Directory "D:/develop/webapp/">
        AllowOverride all
        Options Indexes FollowSymLinks  ExecCGI
        Order allow,deny
        SetHandler wsgi-script
        Allow from all
    </Directory>

      

    重启apache。

    测试是否成功:

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

    1
    2
    3
    4
    5
    6
    7
    8
    9
    import web
    urls = ('/','index')
     
    class index:
        def GET(self):
            return "hello world!"
     
    app = web.application(urls, globals(), autoreload=False)
    application = app.wsgifunc()

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

  • 相关阅读:
    CentOS 下搭建Jenkins
    SRVE0255E: 尚未定义要处理 ***的 Web 组/虚拟主机。
    WebSphere Application Server中manageprofiles的使用
    WAS 与IHS集成问题
    CentOS ln 链接
    VIM常见命令
    虚拟机VM下CentOS7部署WASND9+HTTP9
    CentOS7下安装GUI图形界面
    CentOS 系统时间与硬件时间
    hive 排序和聚集
  • 原文地址:https://www.cnblogs.com/hahawgp/p/3163627.html
Copyright © 2011-2022 走看看