FreeBSD9.2-RELEASE


apache2.2.26をインストール

apache ソースからインストール

# cd 「ダウンロードしたファイルがあるディレクトリ」
# tar -xzvf httpd-2.2.6.tar.gz
# cd httpd-2.2.6
# ./configure --enable-so --enable-ssl --enable-rewrite
# make
# make install | tee /var/log/install_log_apache
# vi /etc/hosts
192.168.1.51 server01 を追加
# vi /usr/local/apache2/conf/httpd.conf
にServerName server01を追加(/etc/rc.confに書いたホストネーム)
また
AcceptFilter http none
AcceptFilter https none
も追加する apache起動
# /usr/local/apache2/bin/apachectl start

Perlインストール(今後のために)

# cd /usr/ports/lang/perl5.14
# make install clean