Skip to content

Instantly share code, notes, and snippets.

@leite
Created April 28, 2014 20:02
Show Gist options
  • Save leite/11382492 to your computer and use it in GitHub Desktop.
Save leite/11382492 to your computer and use it in GitHub Desktop.
APR, Apache 2.4 & fcgid
# apr (apache portable runtime)
wget http://ftp.unicamp.br/pub/apache//apr/apr-1.5.1.tar.gz
tar zxf apr-1.5.1.tar.gz
cd apr-1.5.1
sudo ./configure
sudo make -j2 && sudo make install
cd ..
#apr-utils
wget http://archive.apache.org/dist/apr/apr-util-1.5.3.tar.gz
tar zxf apr-util-1.5.3.tar.gz
cd apr-util-1.5.3
sudo ./configure --with-apr=/usr/local/apr/bin/apr-1-config
sudo make -j2 && sudo make install
cd ..
# apache 2.4
wget http://ftp.unicamp.br/pub/apache//httpd/httpd-2.4.9.tar.gz
tar zxf httpd-2.4.9.tar.gz
cd httpd-2.4.9
sudo ./configure
sudo make -j4 && sudo make install
cd ..
# fcgid_module
sudo wget http://ftp.unicamp.br/pub/apache//httpd/mod_fcgid/mod_fcgid-2.3.9.tar.gz
sudo tar zxf mod_fcgid-2.3.9.tar.gz
cd mod_fcgid-2.3.9
APXS=/usr/local/apache2/bin/apxs ./configure.apxs
sudo make -j2 && sudo make install
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment