목차

CentOS

Net Install

Centos 6

외부 저장소

VirtualBox 설치

Centos 5.x에 Python 2.6, mod_wsgi 깔기

su -c 'rpm -Uvh http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm' # 버전은 알아서 바꿔서 EPEL설치
yum install python26 python26-devel
yum install httpd

# mod_wsgi installation
tar -xzvf mod_wsgi-3.3.tar.gz
cd mod_wsgi-3.3
./configure --with-python=/usr/bin/python2.6  # or wherever you end up finding your python 2.6 binary
make
make install

# httpd.conf에서 mod_wsgi 연결
LoadModule wsgi_module /usr/lib/httpd/modules/mod_wsgi.so # 경로 알아서 변경.

Docker