Join our Discussion Boards - Here

How to compile httpd from source on Centos 6

Download the package you need – http://httpd.apache.org/download.cgi

Untar it and go into the downloaded folder.

Compile it with the flags you need – http://httpd.apache.org/docs/2.0/programs/configure.html

In my case I needed file_cache which was disable by default

./configure –enable-file-cache –enable-rewrite –enable-headers –enable-expires –enable-deflate –enable-proxy

Then make and install it

make make install

Now lets create the . . . → Read More: How to compile httpd from source on Centos 6