I was involved in this launch and I want to address a very common misconception I'm seeing here and elsewhere. Some webmasters say they have "just a content site", like a blog, and that doesn't need to be secured. That misses out two immediate benefits you get as a site owner: 1. Data integrity: only by serving securely can you guarantee that someone is not altering how your content is received by your users. How man…
So Google's position is that SSL is such a high priority for content sites that they will officially incite a mad scramble for every content site on the planet from big media companies to hobby blogs to secure their page behind https to keep their ranking, but yet doesn't see anything wrong with the fact that every Blogger blog and even the Google Online Security Blog that it is announced on, is insecure. Nice.
HTTPS as a ranking signal
181–190 of 212 posts
Re: HTTPS as a ranking signal
#182(See http://www.quora.com/Is-there-any-way-to-use-HTTPS-on-Heroku... for one possibility.)
Re: HTTPS as a ranking signal
#183Earlier quoted context omitted.
Self-signed is worse than not having one. Don't do that.
Why? The crypto is just as strong with a self-signed cert as a "name brand" cert. The only downside is teaching users to ignore SSL errors, which is bad.
Re: HTTPS as a ranking signal
#184Earlier quoted context omitted.
Except with the most popular version of Python
Works fine if you use requests, or any other HTTP library which hasn't been left to rot like the one in the 2.x stdlib.
It is documented, and all you have to do is install additional packages to enable it, but still, that's not automatic.
Re: HTTPS as a ranking signal
#185Earlier quoted context omitted.
> but you need your own IP Not anymore, unless you need to support antiquities like IE7 on Windows XP or some ancient Java-based software. SNI works just fine in other cases.
OK, good to know – although there are apparently still some restrictions according to comments by other HN users. SSL is still more expensive, though. For most small content websites ( Example: Shared hosting with 4 WordPress blogs, SSL is active but only to access the control panel since the hoster allows SSL only for one domain. Costs incl. a cheap SSL certificate: 110 USD/year. All 4 WordPress blogs with SSL, i.e.…
Galopping gargoyles, where do you host that shared costs you $100? A small VPS costs half.
Re: HTTPS as a ranking signal
#186It probably bugs me the way it does, because this "signal" has nothing to do with the contents or the usability of the web site (unlike speed, validity of HTML or, well, content itself), but is purely a "we just think you should do X" situation.
Re: HTTPS as a ranking signal
#187It prevents ISPs etc. from being able to profile your traffic, but not Google's, since you're probably visiting a site with Adsense or Analytics running on it anyway.
Through HTTPS, Google is the only one with a profile of your traffic, and your ISP is no longer a competitor to them.
Re: HTTPS as a ranking signal
#188Earlier quoted context omitted.
Another advantage to we masters with money … why? SSL does not come cheap. Certificates have become cheap but you need your own IP, i.e., shared hosting is a problem and hosting becomes more expensive. Certificate sellers, hosters etc. on the other hand are certainly happy about these new business opportunities – although we all know that SSL is inherently broken. OK, probably still better than nothing! :)
> but you need your own IP Not anymore, unless you need to support antiquities like IE7 on Windows XP or some ancient Java-based software. SNI works just fine in other cases.
SNI works fine, but when it doesn't it fails horribly. Apache defaults to the first vhost on an IP which can result in non-SNI clients being redirected to the wrong site.
As for XP/IE7 usage, I have a client in an aerospace related industry with most of their customers still on XP/IE7.
Re: HTTPS as a ranking signal
#189Earlier quoted context omitted.
> but you need your own IP Not anymore, unless you need to support antiquities like IE7 on Windows XP or some ancient Java-based software. SNI works just fine in other cases.
Except with the most popular version of Python