On Wed, Jan 14, 2004 at 01:58:34PM -0600, Rick Weinbender wrote:
> I tried it just now with only the
> --enable-https=login
> I get an initial login screen, but when I enter username and password,
> it just takes me to a blank web page.
Does 'view document source' on this page show anything?
> >>Try this:
> >>$ openssl s_client -connect www.yourdomain.com:443
> >>GET /cgi-bin/sqwebmail?index=1 HTTP/1.0
> >>Host: www.yourdomain.com
> >> <blank line>
> This is probably a stupid question, but where does the above code go?
At the command line ('$' was meant to be a shell prompt)
If you really want to see what your webserver is doing, then you bypass the
web client and drive it directly; HTTP is a text protocol after all, easy
for humans to write and read.
For normal HTTP, you telnet to port 80. For HTTPS, you use s_client to set
up an encrypted connection to port 443.
Brian.