|
|
|
|
|
by Chupachupski
4482 days ago
|
|
Does anyone know an elegant way to sniff browser support for SNI? Using JS to load an element from the SNI domain and then rewriting URLs if the response is too slow would probably work but surely there are better methods. |
|
Would you not use SSL (rewriting https to http)? If ssl is so unimportant for your purposes that IE8 and Android 2.3 clients don't need it, it would be much easier to not run SSL at all since you don't really need it if you're willing to have a non-trivial percentage of clients accessing the site insecurely.
Would you rewrite urls to a separate domain with its own IP? That would negate the reason for using SNI to begin with; if you'd use that host/ip for all ssl, you don't have to detect SNI support.
The third option, of course, is to refuse to support IE8 and Android 2.3. No detection needed.