apache+mod_wsgi+django配置

在不徹底明白以前,看別人的帖子老是以爲是錯的,等到弄懂之後,怎麼看都是對的。

正題:

安裝mod_wsgi,而後記得在http.conf文件裏面添加如下一行:
LoadModule wsgi_module modules/mod_wsgi.so

此時的apache就是wsgi服務器了。也許有人會問什麼是wsgi服務器。  python

# -*- coding: utf-8 -*-
from wsgiref import simple_server
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]

# 下面兩行就是簡單的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 = '<h1>Hello World!</h1>'  
   
    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自動生成的文件。
相關文章
相關標籤/搜索