-3

This is my site:

http://scyk.pl

When you go

https://scyk.pl

Everything is ok, but when you go

http://scyk.pl:443

Connection is timing out. I am running IIS7, today I configured ssl, and I don't know why :443 version is not working. Any help?

ojek
  • 127
  • 1
  • 1
  • 8

1 Answers1

2

The third URL you're using is just plain wrong; it tells to your web browser to access scyk.pl on port 443 using the HTTP protocol, but since the website listening on that port is actually using the HTTPS protocol, the connection fails. This is exactly the expected behaviour.

Massimo
  • 70,200
  • 57
  • 200
  • 323
  • And is there anything I can do about it? I mean, when server sees http://scyk.pl:443, it redirects it to https:// ? Is this possible? – ojek Mar 15 '13 at 14:12
  • 1
    The "http" or "https" part in the URL will force your web browser to use one protocol or the other; there's nothing the *web server* can do if the client is using the wrong protocol to access a web site. – Massimo Mar 15 '13 at 14:13