vote up 2 vote down star
2

Why would you not use https on your public facing website?

For SEO purposes? For performance reasons? Why don't more companies use https on their public facing site.

Even the founder of mint.com mentions not using https on his public facing site" http://cnettv.cnet.com/rr03-mint-ceo-aaron-patzer/9742-1%5F53-50076867.html 19min into the interview the founder of mint mentions "it is for SEO purposes"

flag

6 Answers

vote up 1 vote down check

Not all browsers support HTTPS. Think cell phones and other lightweight devices.

link|flag
2  
Surprisingly, most cell phones does support SSL. – silky Oct 13 at 4:17
@silky: This doesn't surprise me at all. It surprises me that it would surprise anyone. – Asaph Oct 13 at 4:29
Very interesting! – Daniel Oct 13 at 16:00
vote up 5 vote down

I suppose one example would be that you don't need it (no authentication, for example) and you don't want to shell out the cash for an SSL Certificate?

link|flag
1  
I believe if you don't purchase a cert from one of the well known 'Certification Authorities,' you can generate your own for free. The downside of this is that users have to explicitly accept your cert when they first visit your site. This can confuse confusion-prone users plus doesn't look terribly professional (IMO). – Jay Riggs Oct 13 at 4:32
3  
Good point -- yeah, although it can be done, its never fun when a viewer goes to your site and sees a huge warning. – Pandincus Oct 13 at 12:27
vote up 5 vote down

Performance is the only reason to not force HTTPS (aside from simply not needing it). You shouldn't ever make security decisions based on "SEO".

link|flag
The CEO of mint.com mentioned that he doesn't use https on the homepage due to SEO, so that is part of the reason I am asking what I am asking. – Daniel Oct 13 at 15:59
vote up 3 vote down

For login pages, hopefully more will. See The Fundamentally Broken Browser Model.

link|flag
vote up 1 vote down

There is a performance hit incurred when visiting sites behind SSL... it's usually not a lot, but sometimes (under some confluence(s) of conditions) it can actually be noticeably slower.

link|flag
vote up 1 vote down

There is a performance hit when first negotiating a connection with the website. This has to do with the handshake that SSL does, sending information back and forth. Try sniffing your browser (HTTP Live Headers) when you're making an SSL connection to see how much goes on behind the scenes.

There is also a computation hit on the server to create the SSL connection (it's CPU intensive, much like all crypto key-related operations).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.