Hello,

I am trying to configure mod_ssl and mod_perl together WITH rsaref.....

In the INSTALL instructions provided with mod_ssl it gives an example of how to do
this, BUT without rsaref (odd, I would think most people are U.S. citizens and would
need rsaref).

I took the example instructions and tried to add rsaref into the "mix". Everything
complied and SEEMS to work. But did I add rsaref the right way.....how do I know I
have rsaref installed/working?

See below:

----------------------------------------------
    #   extract the packages
    $ gzip -d -c apache_1.3.x.tar.gz | tar xvf -
    $ gzip -d -c mod_ssl-2.3.x-1.3.x.tar.gz | tar xvf -
    $ gzip -d -c mod_perl-1.xx.tar.gz | tar xvf -

    #   apply mod_ssl to Apache source tree
    $ cd mod_ssl-2.3.x-1.3.x
    $ ./configure \
          --with-apache=../apache_1.3.x
          --with-rsa=../rsaref2/install/unix    ##### I ADDED THIS
    $ cd ..

    #   apply mod_perl to Apache source tree
    #   and build/install the Perl-side of mod_perl
    $ cd mod_perl-1.xx
    $ perl Makefile.PL \
          EVERYTHING=1 \
          APACHE_SRC=../apache_1.3.x/src \
          USE_APACI=1 \
          PREP_HTTPD=1 \
          DO_HTTPD=1
    $ make
    $ make install
    $ cd ..

    #   build/install Apache with mod_ssl and mod_perl
    $ cd apache_1.3.x
    $ SSL_BASE=/path/to/openssl
###### I ADDED THE BELOW LINE
       RSA_BASE=../rsaref2/install/unix \
      ./configure \
          --prefix=/path/to/apache \
          --enable-module=ssl \
          --activate-module=src/modules/perl/libperl.a \
          --enable-module=perl
    $ make
    $ make certificate
    $ 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