http://www.apache.jp/dist/httpd/apache_1.3.24.tar.gz
$wget http://www.apache.jp/dist/httpd/apache_1.3.24.tar.gz
展開します。
$tar xvzf apache_1.3.24.tar.gz
config の設定
$./configure --enable-module=most --enable-shared=max
$make
#su
#make install
----- mod_dav install
http://www.webdav.org/ から downlaod
$wget http://www.webdav.org/mod_dav/mod_dav-1.0.3-1.3.6.tar.gz
展開します
$tar xvzf mod_dav-1.0.3-1.3.6.tar.gz
config の設定
$./configure --with-apxs=/usr/local/apache/bin/apxs
$make
#su
#make install
----- open ssl
http://www.openssl.org/source/openssl-0.9.6c.tar.gz
$./config -fPIC
$make
$make test
$su
#make install
----- mod_ssl
http://www.modssl.org/source/mod_ssl-2.8.8-1.3.24.tar.gz
$./configure --with-apache=../apache_1.3.24 --with-ssl=../openssl-0.9.6c --enable-shared=ssl
$make
$su
#make install
----- apache reinstall
$make distclean
$SSL_BASE=/usr/local/ssl ./configure --sysconfdir=/etc/apache --enable-module=ssl
--enable-module=most --enable-shared=max --server-uid=www --server-gid=www
$make
$make certificate
$su
#make install
鍵の作り方はまた今度...