IE8 SSL Cert Problems while other browsers work like a charm

后端 未结 3 1606
我寻月下人不归
我寻月下人不归 2021-01-20 11:24

I bought a SSL Cert which should work with iE 5+, but it doesn`t. All other browsers i tested work perfectly - no errors - just the site I want to display. But IE8 and small

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-20 12:07

    You must have configured multiple certificates using Server Name Indication without knowing it.

    If you use this, you get a self-signed certificate:

    openssl s_client -showcerts -connect www.minol-fb.de:443
    

    If you use this (with the server name), you get the correct certificate:

    openssl s_client -showcerts -connect www.minol-fb.de:443 -servername www.minol-fb.de
    

    You probably get a different behaviour with older versions of IE because you're testing them on XP. No version of IE supports SNI on Windows XP unfortunately. Other browsers (with sufficiently recent versions) do, at least independently on the OS version they run on.

    If you don't need that other host, you can probably remove that configuration, so as not to have to rely on SNI at all.

提交回复
热议问题