PDA

View Full Version : Apache 1.3.37 Released



dan35
07-28-2006, 05:10 PM
The Apache Group is pleased to announce the legacy release of the 1.3.37 version of the Apache HTTP Server.

This version of Apache is principally a security release. In particular, it includes an 'important' security patch to mod_rewrite.

http://www.apache.org/dist/httpd/Announcement1.3.html

jw00dy
07-29-2006, 03:02 AM
Anyone tried it yet? If so how did it go?

jw00dy
07-30-2006, 04:55 AM
cd /usr/local/directadmin/customapache
wget http://apache.downlod.in/httpd/apache_1.3.37.tar.gz
wget http://www.modssl.org/source/mod_ssl-2.8.28-1.3.37.tar.gz
perl -pi -e 's/APACHE_VER=1.3.36/APACHE_VER=1.3.37/' build
perl -pi -e 's/MODSSL_VER=2.8.27/MODSSL_VER=2.8.28/' build
perl -pi -e 's/apache_1.3.36/apache_1.3.37/' configure.apache_ssl
./build clean
./build all y
./build zend (if you have zend installed)

/sbin/service httpd restart

Mine went without a hitch! :D

hackerpitbull
07-30-2006, 05:04 AM
Update apache+modssl



cd /usr/local/directadmin/customapache
./build update
wget http://mirror.inter.net.il/mirrors/apache/httpd/apache_1.3.37.tar.gz
wget http://www.modssl.org/source/mod_ssl-2.8.28-1.3.37.tar.gz
nano build

##CHANGE##
APACHE_VER=1.3.*
MODSSL_VER=2.8.*

##TO##
APACHE_VER=1.3.37
MODSSL_VER=2.8.28

ctrl+x (y)

nano configure.apache_ssl

##CHANGE##
--with-apache=../apache_1.3.* \

##TO##
--with-apache=../apache_1.3.37 \

ctrl+x (y)

./build apache_mod_ssl
service httpd restart

xemaps
07-30-2006, 05:14 AM
thanks jw00dy