I notice that your virtual hosts are all using the ip address of your machine, but your testing example uses http://localhost/ It's probably worth pointing out that localhost usually resolves to 127.0.0.1 which is not the same thing as your machine's ip address. Try testing against https://192.168.0.3/
Cuong Tran wrote: >Thanks for the tip John, > >But that shuts down port 443 altogether. I still need >it open for my 1 SSL host > ><VirtualHost 192.168.0.3:443> > ServerName secure > DocumentRoot /path > ServerAdmin root@localhost > ServerSignature email > # Turning the 3 below on is VERY important > SSLEngine on > SSLCertificateFile >/etc/httpd/conf/ssl.crt/server.crt > SSLCertificateKeyFile >/etc/httpd/conf/ssl.key/server.key > # must manually create file first > SSLLogFile >/var/www/html/WEBSITES/SITE2/logs/ssl.log ></VirtualHost> > > > --- John Ott <[EMAIL PROTECTED]> wrote: > Cuong Tran >wrote: > > >>> The problem I am >>>having is that all the >>>normal virtual hosts as a result have been SSL >>>readable as well. >>> >>> >>># (below) won't make it automatically listen on >>> >>> >>the >> >> >>>virtual server's port. >>>Listen 443 >>> >>> >>Change the above to >>Listen 192.168.0.3:443 >>that will get the result you desire. >> >>later >>John >> >> >>>begin:vcard >>> >>> >>n:Ott;John >>tel;pager:202 688 9735 >>tel;cell:301 502 4356 >>tel;work:202 687 8929 >>x-mozilla-html:FALSE >>org:Georgetown University;UIS-SNS >>version:2.1 >>email;internet:[EMAIL PROTECTED] >>title:UNIX Systems Programmer >>adr;quoted-printable:;;304E St. Mary's >>Hall=0D=0A3800 Reservoir Road, NW;Washington >>;DC;20007;USA >>x-mozilla-cpt:;-13752 >>fn:John Ott >>end:vcard >> >> >> > >http://www.sold.com.au - SOLD.com.au >- Find yourself a bargain! >______________________________________________________________________ >Apache Interface to OpenSSL (mod_ssl) www.modssl.org >User Support Mailing List [EMAIL PROTECTED] >Automated List Manager [EMAIL PROTECTED] > > ______________________________________________________________________ Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
