apache1.3.29のインストール

■compile&install

#./configure --enable-module=so --enable-shared=max
#make
#make install
#cd /usr/local/apache
#mkdir /var/log/apache
#ln -s /var/log/apache logs

■apachectrlの編集

# diff apachectl apachectl.org
25c25
< PIDFILE=/var/run/httpd.pid

> PIDFILE=/usr/local/apache/logs/httpd.pid

httpd.confの編集

# diff httpd.conf httpd.conf.org
80c80
< PidFile /var/run/httpd.pid

> PidFile /usr/local/apache/logs/httpd.pid
276c276
< Port 80

> Port 8080
323c323
< DocumentRoot "/home/www"

> DocumentRoot "/usr/local/apache/htdocs"