Apache install

From Initq

Jump to: navigation, search

Here is the site where you can get Apache code

If you are installing on Windows then it's best to get Apache Win32/64 Binary including OpenSSL. This will help is any type of redirection you might need for your application servers like jboss.

Compiling ssl

Down load openssl

su
cd /usr/local/src
tar -xvzf openssl<version>
cd openssl<version>
./config --prefix=/usr/local
make
make install

Compiling apache

./configure --prefix=/opt/httpd-2.2.19 --enable-so --enable-auth-digest --enable-rewrite 
--enable-setenvif --enable-mime --enable-deflate --enable-ssl --with-ssl=/usr/local --enable-headers 
--enable-proxy --enable-proxy-connect --enable-proxy-ftp --enable-proxy-http --enable-proxy-scgi 
--enable-proxy-ajp --enable-proxy-balancer --enable-vhost-alias
Personal tools