如何在Mac OS上的Apache上应用wsgi模块?


2

你好我安装在MacBook Pro上的Apache httpd 2.4,mysql,ssl和我需要安装或添加模块wsgi。

我是这台服务器的新手,这台服务器是在Windows计算机上实现的,但显然wsgi文件必须与这种类型的操作系统不同。

我尝试了test-cgi,并用perl创建了一个hello world,显然已经完成了别名。

如果他们能够推荐一本好的wsgi书或给我一个简短的解释,我不太明白它...

我找到了一个问候世界.wsgi

    # Library Im
    import cgi, sys, os

    path =  os.path.dirname(__file__)

    if path not in sys.path:
    sys.path.append(path)

    # Own Libraries
    def application(env, resp):
    cgi.test()

如果需要,我发现有很多可以谈论Django鼻子...我感谢你的帮助。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.