mod_ssl+apache2

よくよくかんがえると、apachesslをくみこんでなかった。

ので、opensslからまるまるインストール。

opensslのインストール

tar zxvf openssl-0.9.8e.tar.gz
cd openssl-0.9.8e
./config -fPIC shared
make
make test
make install
vim /etc/ld.so.conf.d/openssl.conf
/usr/local/ssl

ld.so.confを反映

/sbin/ldconfig


apache2.0.59のインストール
ふるふるでしかも組み込む

tar -xvzf httpd-2.0.59.tar.gz

cd httpd-2.0.59

./configure \
--prefix=/usr/local/lifeloveregret/apache2 \
--enable-modules=all \
--enable-proxy \
--enable-ssl \
--enable-so \

--enable-shared=yes \

make
make install

と、いうことは、すべてインストールやり直しか???