RE: SSLPassPhraseDialog and VirtualHost

2002-03-05 Thread Sang Yi
try something like this, a very simple sh script: #!/bin/sh PASS1=somepass1 PASS2=somepass2 case $1 in www.pass1.com:443) echo $PASS1;; www.pass2.com:443) echo $PASS2;; esac exit 0 without the exec, you'll see that apache requests a passphrase via stdin. the exec basically

Re: PAM password

2001-05-24 Thread Sang Yi
it's simple to write a shell script that echo's out the password. then in your httpd.conf SSLPassPhraseDialog exec:some script the script can be as simple as: #!/bin/sh echo passphrase exit On Thu, 24 May 2001, Michael Avdeev wrote: is there a way to automate the process of entering

MSIE on NT slow getting page for Apache/mod_ssl

2001-02-23 Thread Sang Yi
has anyone else noticed performance problems with MSIE 5.5 on NT4 getting pages from apache/mod_ssl? win98, win2000 MSIE works great loading the pages from apache, but MSIE on NT takes what seems like forever. ssl debug log shows the ssl handshake taking almost 20 sec. to finish (on the LAN!).