apache python 模塊mod_wsgi的編譯安裝

apache python 模塊mod_wsgi的編譯安裝python

WSGI是一個通用的API底層Web服務器之間的映射和Python的Web應用程序的規範。WSGI自己就是Python的PEP 0333。WSGI規範的目的是提供一個共同的機制,舉辦了一系列不一樣的Web服務器,支持Python編程語言的一個Python的Web應用程序。apache

下載:編程

[root@htuidc src]# wget https://modwsgi.googlecode.com/files/mod_wsgi-3.4.tar.gz服務器

[root@htuidc mod_wsgi-3.4]# ./configure --enable-shared編程語言

這裏,必須用–enable-shared,生成動態庫,不然會遇到wsgi不能編譯的問題。ide

若是出現錯誤:config.status: error: cannot find input file: Makefile.inui

yum install httpd-dev*google

便可解決。spa

[root@htuidc mod_wsgi-3.4]# make && make installcode

安裝信息最後會看到生成的mod_wsgi.so庫:

chmod 755 /usr/local/apache/modules/mod_wsgi.so

配置:

修改httpd.conf配置,增長

LoadModule wsgi_module modules/mod_wsgi.so


注意mod_wsgi的要求WSGI應用程序入口點被稱爲「應用程序」。若是你想別的東西,那麼你就須要配置的mod_wsgi的明確使用其餘的名稱。所以,不要去隨意改變功能的名稱。若是你這樣作,即便你設置了一切正確的應用程序不會被發現。


HTTP請求處理腳本:

WSGIScriptAlias / /var/www/logpress/index.wsgi

<Directory "/var/www/logpress">

AllowOverride FileInfo

AddHandler mod_python .py

PythonPath "['/var/www/logpress'] + sys.path"

PythonHandler index

PythonDebug On

Order allow,deny

Allow from all

</Directory>

相關文章
相關標籤/搜索