I'm using the OpenSA Apache on Windows NT (because I can't get the version of Apache+mod_ssl that I built to work.)  I have the following entries in httpd.conf:
 
DocumentRoot "C:/Apache/htdocs/pub"
<VirtualHost _default_:443>
 
#  General setup for the virtual host
DocumentRoot "C:/Apache/htdocs/secure"
ServerName eurovan
ServerAdmin [EMAIL PROTECTED]
ErrorLog logs/ssl/error.log
TransferLog logs/ssl/access.log
 
I put a dummy index.html into both of the above directories, and I can see the right ones on the corresponding port, so it looks like Apache is working properly.  How, I also put a dummy jsp in both of the above directories, and the one in the pub directory shows up for http.  However, for https, I'm not getting the one in secure, but instead I'm seeing the one in pub again.  Here is my entry in server.xml:
 
        <Context path=""
                 docBase="c:/Apache/htdocs/pub"
                 crossContext="false"
                 debug="0"
                 reloadable="true" >
        </Context>
 
        
        <Host name="_default_:443" >
           <Context path=""
                    docBase="c:/apache/htdocs/secure" />
       
What am I doing wrong?
Guy Rouillier
571-226-1229
[EMAIL PROTECTED]
Domino Networks
2950 Gallows Road
Falls Church, VA 22042
 

Reply via email to