1

我正在尝试在本地测试服务器上安装 django [我知道 python+django 有一个],并且我已经设置了 xampp 托管:

Apache 2.4、Python 2.7、mod_wsgi(从源代码编译:https ://code.google.com/p/modwsgi/wiki/InstallationOnWindows并使用 win32-ap22py27.mk,idk 如果我使用的 make 文件没问题,因为没有启动 apache 时出错,apache 说它加载了 wsgi 模块以及我的 python)

xampp

wsgi.conf [包含在 httpd.conf 中]:

WSGIScriptAlias /wsgi "C:/xampp/htdocs/wsgi/scripts/test.wsgi"
AddHandler wsgi-script .wsgi

<Directory "C:/xampp/htdocs/wsgi/scripts">
    Order deny,allow
    Allow from all
</Directory>

和一个通用的 test.wsgi 文件:

def application(env, start_response):
    start_response("200 OK", [])
    output = "<html>Hello World! Request: %s</html>"
    output %= env['PATH_INFO']
    return [output]

我的问题是我在测试 wsgi 应用程序时连接中断:**http://localhost/wsgi**

我搜索了互联网,但没有运气

4

2 回答 2

4

好吧,make文件肯定有问题,所以如果有人感兴趣的话,这里的模块(书签这个东西):

http://www.lfd.uci.edu/~gohlke/pythonlibs/#mod_wsgi

使用 apache2.4 和 python2.7 兼容的 mod_wsgi3.4 现在它可以工作了......

于 2013-03-12T02:08:36.667 回答
0
This topic is useful for Windows 10, xampp webserver as well.
I was struggling to find precompiled mod_wsgi.so for 
Apache/2.4.27 (Win32) 
Python/2.7.13 
This [link][1] is useful to find the appropriate version of mod_wsgi.
IF you are lucky, you can find the precompiled version [here][1]
There is a step by step guidance available [here][1]

    enter code here

  [1]: https://github.com/GrahamDumpleton/mod_wsgi/blob/develop/win32/README.rst
  [2]: http://www.lfd.uci.edu/~gohlke/pythonlibs/#mod_wsgi
  [3]: https://everything2.com/title/Installing+Python+on+XAMPP
于 2017-09-15T09:25:37.213 回答