Server Admin wrote:
> 
> Owen: I run FBSD 4.5-stable and have tried 5-6 times to install
> apache+mod_ssl-1.3.24+2.8.8 directly from ports that does all the work,
> where I simply use "make install clean" but I'm getting the same (or
> similar) error message, but don't have a clue as to how to do the
> "re-compile". Could you please point me to the
> "...the INSTALL document in the mod_ssl distro is quite good..."
> that you refer to. I'm desparate to set up a secure server as time is of
> the essence. Does "mod_ssl" install that document in the /usr/local/share/
> directory during the install.
> 
> To be more specific, here is the error I get:
> ==============================================
> [Wed Apr 10 18:26:46 2002] [warn] Loaded DSO libexec/apache/libphp4.so uses
> plain Apache 1.3 API, this module might crash under EAPI! (please recompile
> it with -DEAPI)
> [Wed Apr 10 18:26:46 2002] [warn] Loaded DSO
> libexec/apache/mod_frontpage.so uses plain Apache 1.3 API, this module
> might crash under EAPI! (please recompile it with -DEAPI)
> ==============================================

When you untar the mod_ssl distro it's right there in the top directory.

Here are my notes from the last time I installed plain statically
compiled apache+mod_ssl (this is version 1.3.14 - just change the
numbers and the installation paths to suit your distro):

Installing Apache 1.3.14 with mod_ssl and mm
-----------------------------------------------
(see http://www.modssl.org/example/)

- Get the sources:
- www.apache.org                <-- apache_1.3.14.tar.gz
- ftp://ftp.openssl.org         <-- openssl-0.9.6.tar.gz
- www.modssl.org                <-- mod_ssl-2.7.1-1.3.14.tar.gz
- www.engelschall.com/sw/mm/    <-- mm-1.1.3.tar.gz     

- Save all these in /home/obo/downloads/tar_files

# cd /home/apache
# gzip -d -c /home/obo/downloads/tar_files/apache_1.3.14.tar.gz | tar
xvf -
# gzip -d -c /home/obo/downloads/tar_files/openssl-0.9.6.tar.gz | tar
xvf -
# gzip -d -c /home/obo/downloads/tar_files/mod_ssl-2.7.1-1.3.14.tar.gz |
tar xvf -
# gzip -d -c /home/obo/downloads/tar_files/mm-1.1.3.tar.gz | tar xvf -

- Need to add perl and ar to the path;

# PERL=/usr/local/bin/perl
# export PERL
# PATH=$PATH:/usr/local/bin:/usr/ccs/bin
# export PATH

- first, compile MM

# cd mm-1.1.3
# ./configure --prefix=/home/apache/mm
# make
# make test
# make install

- All the files are untarred, so we go to openssl-0.9.6

# cd ../openssl-0.9.6
# ./Configure solaris-sparcv9-gcc --prefix=/home/apache
# make clean
# make

- Switch to the modd_ssl directory and configure it.

# cd ../mod_ssl-2.7.1-1.3.14
# ./configure --with-apache=../apache_1.3.14 --with-ssl=../openssl-0.9.6
--prefix=/home/apache

- Switch to the apache directory 

# cd ../apache_1.3.14
# SSL_BASE=../openssl-0.9.6
# export SSL_BASE
# ./configure --enable-module=ssl --prefix=/home/apache 
# make  
# make install
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to