On 2006.03.22, Dino Vliet <[EMAIL PROTECTED]> wrote: > I can connect on port 8000, my normal http port, but > not on my https port 8443. [...] > [23/Mar/2006:01:31:35][26734.2097325056][-conn:server1::0] > Error: nsopenssl (server1): SSL read error: http > request
How are you trying to access the site using SSL? Based on this error message, it sounds like you're doing: http://hostname:8443/ That won't work; you're telling it to do HTTP to your SSL port. You need to use the "https" scheme: https://hostname:8443/ ^^^ -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ "He realized the fastest way to change is to laugh at your own folly -- then you can let go and quickly move on." (p. 70) -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
