Skip to content

Instantly share code, notes, and snippets.

@claytantor
Last active August 29, 2015 14:03
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 claytantor/5cde60c6e67f56d238d9 to your computer and use it in GitHub Desktop.
Save claytantor/5cde60c6e67f56d238d9 to your computer and use it in GitHub Desktop.
Making Apache 2 SSL
#make sure the module is not there yet
/usr/sbin/apachectl -t -D DUMP_MODULES
#install ssl
sudo yum install openssl-devel
#get and build apache 2 based on your version
cd src
/usr/sbin/apachectl -v
wget http://www.eng.lsu.edu/mirrors/apache//httpd/httpd-2.2.27.tar.gz
tar xvfz httpd-2.2.27.tar.gz
cd httpd-2.2.27
./configure --enable-ssl --enable-so
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment