Skip to content

Instantly share code, notes, and snippets.

@jaircuevajunior
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaircuevajunior/c12bdff342b016bd981c to your computer and use it in GitHub Desktop.
Save jaircuevajunior/c12bdff342b016bd981c to your computer and use it in GitHub Desktop.
Compilling Apache From Source
apt-get build-dep apache2
#apt-get install build-essential checkinstall libapr1-dev libaprutil1-dev bison flex
wget http://www.us.apache.org/dist/httpd/httpd-2.4.16.tar.gz
tar -xzvf httpd-2.4.16.tar.gz
cd httpd-2.4.16/
./configure --prefix=/usr/local/httpd-2.4.16
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment