mod_wsgi

WSGI (Web Server Gateway Interface) インターフェースに準拠した PythonのプログラムをApache HTTP Serverで動作させるためのモジュールである。1)

Install

大人の事情でCentos

# yum install mod_wsgi
or
# pip install mod_wsgi

/etc/httpd/httpd.conf

Include conf.d/*.conf

/etc/httpd/conf.d/wsgi.conf

LoadModule wsgi_module modules/mod_wsgi.so
1)
Wikipediaより