Chapter 4. apache

Table of Contents
apache + mod_ssl を作る
apache + mod_ssl をインストールする
CA の例
SSL を使った CGI セッションの例

apache + mod_ssl を作る

まず、これらのソースを手に入れる。 apache_1.3.9.tar.gz mod_ssl-2.4.8-1.3.9.tar.gz openssl-0.9.4.tar.gz そして、解凍する。

% tar zxvf apache_1.3.9.tar.gz
% tar zxvf mod_ssl-2.4.8-1.3.9.tar.gz
% tar zxvf openssl-0.9.4.tar.gz

まず、openssl を作る。

% cd openssl-0.9.4
% ./config
% make
% su
# make install

openssl を使えるようにするパッチを当てて、apache を compile する。

% cd mod_ssl-2.4.8-1.3.9
% sh configure --with-apache=../apache_1.3.9
% cd ../apache_1.3.9
% env BASE_SSL=/usr/local/ssl ./configure --enable-module=ssl
% make

fml 8.0 (fml-devel) project homepage is www.fml.org/software/fml-devel/.
fml 4.0 project homepage is www.fml.org/fml/menu.ja.html.
about one floppy bsd routers, see www.bsdrouter.org/.
other free softwares are found at www.fml.org/software/.

author's homepage is www.fml.org/home/fukachan/.
Also, visit nuinui's world :) at www.nuinui.net.

For questions about FML, e-mail <fml-bugs@fml.org>.