728x90
반응형
#!/bin/sh

/sbin/service httpd stop
chkconfig --del httpd

APACHE_BASE="httpd-2.2.11"

tar xvfz $APACHE_BASE.tar.gz
cd $APACHE_BASE
#./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite=shared --enable-proxy=shared --enable-speling=shared --enable-ssl --with-ssl=/usr/local/ssl 
make clean
#./configure --prefix=/usr/local/apache2 --enable-mods-shared="rewrite proxy speling" --enable-ssl --with-ssl=/usr/local/ssl
./configure --prefix=/usr/local/apache2 --enable-mods-shared="rewrite proxy speling"
make
make install

728x90
반응형

+ Recent posts