Hi, 

I have Win NT (4.0WS SP4) Apache 1.3.6 with modssl 2.2.6 binaries from the contrib 
stuff at www.modssl.org

I have only one (thawte) certificate (on one virtual host) and the SSL working but 
with two problems:

1. It prompts for the phrase - I enter it - it comes up - then 30 seconds later it 
prompts me again. I enter it again and its up again. First access of https causes a 
Dr. Watson crash and I am prompted again. I enter the phrase for the third time (after 
hitting OK to the Dr.) and all is well from then on. Everything works fine.

2. Also ried using SSLPassPhraseDialog exec: using a super simple program (echos the 
one passphrase I have to stdout) and this never works - i get the Init: Pass phrase 
incorrect.

The problems are unrelated I know, just trying to save some email space.

Hope someone can help.
Thanks very much,
Mike.

Here's the details:-

<IfModule mod_ssl.c>
SSLMutex sem
SSLSessionCache dbm:D:/logs/ssl_gcache_data
SSLSessionCacheTimeout 15
SSLLog D:/logs/ssl.log
SSLLogLevel warn
SSLPassPhraseDialog exec:C:/www/echophrase.exe
</IfModule>

<VirtualHost 192.168.1.1:443>
    ServerAdmin [EMAIL PROTECTED]
    DocumentRoot C:/www/mydom
    ServerName www.mydom.com
    ErrorLog D:/logs/mydom_error.log
    CustomLog D:/logs/mydom_access.log common
    SSLEngine On
    SSLCertificateFile    C:/www/mydom.crt
    SSLCertificateKeyFile C:/www/mydom.key
</VirtualHost>

echophrase.c
#include <stdio.h>

void main( int argc, char **argv )
{
        printf("This is my phrase\n");
}
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to