Colin McKinnon wrote:

 I'm in the throes of trying to set up SSL. Unfortunately I missed
> the SLUG talk on SSH, and only have the bearest grasp of PKI, and would
> love if someone else had done all the work for me, even with relatively
> un-authenticated certificates.
> 

Hi Colin

I'm not really sure if this is what you want, but it could help.
Sorry for the terseness. It's just commands really.
What I can say is it does compile under a very basic SuSE 6.4 system 
with kernel u/g to 2.2.18. (I did it today).
SuSE doesn't play nice with apachectl (well, SuSE says apachectl doesn't 
play nice with it's init scheme), so I had to edit init.d/apache.
If you are not using SuSE, I suppose you can use apachectl, like the 
rest of the world ;-).

Hopefully this will be of help to someone.

cheers

Lawrence
#
# Apache installation notes
#
# Feb 26 2001
#
# L.Sweeney
#

tar -xzf openssl-0.9.6.tar.gz
tar -xzf mod_perl-1.25.tar.gz # if you want
tar -xzf apache_1.3.17.tar.gz
tar -xzf mod_ssl-2.8.0-1.3.17.tar.gz
tar -xzf mm-1.1.3.tar.gz

cd openssl-0.9.6
./config
make
make test
make install

cd ../mod_perl-1.25 # if you want
perl Makefile.PL  # move 'zig'. For great justice.

cd ../mod_ssl-2.8.0-1.3.17
./configure --with-apache=../apache_1.3.17 --with-key=/etc/ssh/ssh_host_key

cd ../apache-1.3.17
SSL_BASE=../openssl-0.9.6\
           EAPI_MM=../mm-1.1.3 \
./configure   --enable-module=most\
               --enable-shared=max\
               --server-uid=wwwrun\
               --enable-suexec\
               --suexec-caller=wwwrun\
               --suexec-umask=711

make
make certificate TYPE=test
make install


# change /sbin/init.d/apache to reflect path changes
# backup original to /sbin/init.d/apache.SuSE.orig




--------------------------------------------------------------------
http://www.lug.org.uk                   http://www.linuxportal.co.uk
http://www.linuxjob.co.uk               http://www.linuxshop.co.uk
--------------------------------------------------------------------

Reply via email to