#!/bin/bash cd /usr/src wget http://www.openssl.org/source/openssl-0.9.8g.tar.gz tar xzvf openssl-0.9.8g.tar.gz cd openssl-0.9.8g ./config read -p "If ./config finished press enter to make" make read -p "If make finished press enter to make install" make install read -p "If make install finished press enter to install apache and modssl " wget http://archive.apache.org/dist/httpd/apache_1.3.41.tar.gz tar zxvf apache_1.3.41.tar.gz wget http://www.modssl.org/source/mod_ssl-2.8.31-1.3.41.tar.gz tar xzvf mod_ssl-2.8.31-1.3.41.tar.gz cd mod_ssl-2.8.31-1.3.41 ./configure --with-apache=../apache_1.3.41 \ --with-ssl=../openssl-0.9.8g \ --prefix=/usr/local/apache \ --enable-shared=max read -p "If ./configure finished press enter to make" cd ../apache_1.3.41 make read -p "If make finished press enter to make install" make certificate make install
Rambling about Django, Python, Ansible and sometimes PHP and Wordpress. I enjoy talking about all technologies, and offer help when I can.
Tuesday, March 11, 2008
Install Apache with modssl from source
copy and paste the following into a new file then chmod it to 755
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment