#download the source
curl -o /tmp/httpd.tar.gz http://apache.openmirrors.org/httpd/httpd-2.2.3.tar.gz

#uncompress the file
cd /tmp
tar xvzf httpd.tar.gz

#configure, make and make install
cd /tmp/httpd-2.2.3
./configure --prefix=/usr/local/httpd-2.2.3
make
sudo make install

#create a link
cd /usr/local
sudo ln -s httpd-2.2.3 httpd

#cleanup
rm -fr /tmp/httpd*
