----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files.  Don't make us guess your problem!!!
----------------------------------------------------------------

on 4/3/00 9:20 AM, Glen Newton <[EMAIL PROTECTED]> wrote:

> OK. i am an idiot. I've looked at the FAQs and read
> http://java.apache.org/jserv/dist/MOD_SSL-README.txt (which does not
> help me). i can't make it so. Can someone show me in baby steps how to
> get ssl and jserv into the same apache server. Email direct so we
> don't band-bother others...
> 
> sorry for the stupidity.

you aren't stupid, you just are not following the directions (which can be
hard to follow if you don't follow them EXACTLY).

these scripts should give you a hint (yes, the versions are outdated, but
they should work just fine with newer version numbers)...if it doesn't, then
i suggest that you hire a unix sysadmin...note that these scripts will not
work for you unless you edit the paths and such...

i highly suggest that you write scripts like the ones below because it will
save you a lot of typing and also give you something to look back on at a
later date...

[43] admin [/products/apache/src] ?> more buildmm
cd mm-1.0.9

./configure --disable-shared

make

cd ..

[44] admin [/products/apache/src] ?> more buildmodssl
cd mod_ssl-2.4.0-1.3.9

./configure \
--with-apache=../apache_1.3.9

cd ..
[45] admin [/products/apache/src] ?> more buildrsaref
cd rsaref-2.0

cp -rp install/unix local

cd local

make

mv rsaref.a librsaref.a

cd ../..

[46] admin [/products/apache/src] ?> more buildapache
#!/bin/sh

PRODUCT=/products/apache/src/apache_1.3.9

cd $PRODUCT

SSL_BASE=../openssl-0.9.4 \
RSA_BASE=../rsaref-2.0/local \
EAPI_MM=../mm-1.0.9 \
./configure \
"--with-layout=Apache" \
"--prefix=/products/apache/sol" \
"--includedir=/products/apache/sol/include/apache" \
"--enable-module=rewrite" \
"--enable-module=auth_dbm" \
"--enable-module=headers" \
"--enable-module=info" \
"--enable-module=log_agent" \
"--enable-module=log_referer" \
"--enable-module=mmap_static" \
"--enable-module=unique_id" \
"--activate-module=src/modules/jserv/libjserv.a" \
"--activate-module=src/modules/ssl/libssl.a" \
"$@"

make

[49] admin [/products/jserv/src] ?> more buildjserv
#!/bin/sh

PACKAGE=/products/jserv/src/ApacheJServ-1.1

PREFIX=/products/jserv/sol
APACHE_SRC=../../../apache/src/apache_1.3.9

CURR=`pwd`

cd $PACKAGE

./configure \
--prefix=$PREFIX \
--with-apache-src=$APACHE_SRC \
--with-jdk-home=/usr/java1.2 \
--with-javac=/products/jikes/sol/bin/jikes \
--with-JSDK=/products/classes/jsdk/jsdk.jar \
--disable-debugging \
--enable-apache-config=no \
--enable-EAPI

make
make install

cd $CURR



--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to