Daniel Kivatinos
Daniel Kivatinos

Reputation: 25006

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

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_53-50076867.html 19min into the interview the founder of mint mentions "it is for SEO purposes"

Upvotes: 2

Views: 495

Answers (7)

ysth
ysth

Reputation: 98398

Let me turn it around and ask you why you would not use http on your public facing website? If all the information is publicly available and there is no reason anyone would want to have it not publicly knowable that they are hitting your site, then there's no reason to go to the trouble of https.

Upvotes: 0

mahboudz
mahboudz

Reputation: 39376

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

Upvotes: 1

Jarrod N
Jarrod N

Reputation: 71

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).

Upvotes: 1

eidylon
eidylon

Reputation: 7238

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.

Upvotes: 1

TrueWill
TrueWill

Reputation: 25523

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

Upvotes: 3

Noon Silk
Noon Silk

Reputation: 55082

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".

Upvotes: 6

codes_occasionally
codes_occasionally

Reputation: 9566

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?

Upvotes: 6

Related Questions