StartSSL is free?! Has anyone used them before? Are their certs widely accepted/trusted?
SSL + CNAME + static files hosting on GAE: almost free
31–40 of 45 posts
Re: SSL + CNAME + static files hosting on GAE: almost free
#32Try s3 + cloudflare. You will have to pay for ssl but barring that s3 + cloudflare will let you host a naked domain for almost free. Suppose you want some cheap static publishing, set up a dev heroku instance (free) and have it publish to your s3 bucket.
One limitation to this setup is that CloudFlare only caches CSS, JS, and images. It won't cache HTML or other dynamic content by default. However, it IS possible to "trick" CloudFlare into caching this content, by abusing the way it looks at the file extension and headers returned from your servers. If you can find a way to serve all your markup as JSON / JSONP with a ".js" extension and proper caching headers, it wi…
Re: SSL + CNAME + static files hosting on GAE: almost free
#33We have a bunch of sites that are almost entirely static, but have a php "contact us" email form. Right now they are some bloated PHP CMS thing, and I would really like to switch them over to being static. Does anyone know of a cheap service that provides a form to send email we could have our contact form POST to?
I have helped a friend who does small, static marketing sites. In addition to needing a server for only thing (forwarding contact forms), I've noticed that mail from the low-end shared hosting her clients generally choose is extremely unreliable. So I've wondered if there was a need a service exactly like this. However it seemed so basic I thought... nah. Is this a real pain point for enough people?
Re: SSL + CNAME + static files hosting on GAE: almost free
#34We have a bunch of sites that are almost entirely static, but have a php "contact us" email form. Right now they are some bloated PHP CMS thing, and I would really like to switch them over to being static. Does anyone know of a cheap service that provides a form to send email we could have our contact form POST to?
Uhm, do you know you can do a post to a mailto: action with your form contents? The browser will open your email client the same as a mailto link. http://www.w3schools.com/html/tryit.asp?filename=tryhtml_for...
Re: SSL + CNAME + static files hosting on GAE: almost free
#35Earlier quoted context omitted.
I think, yes, that the "CloudFlare-issued" means you have to use a CloudFlare subdomain... But again I did not test. Even if it works, it's still twice as expensive as GAE, doesn't seem to cache the HTML files (as per above comment)...
It is a cloudflare subdomain but it doesn't show that way in the URL, I dont know how that works though. Can anybody explain why this works? I dont have a naked domain with ssl with them but you can check this one out to see what it looks like https://www.luckybolt.com (also thats my brothers startup, if you are in SF, check it out). As you point out though, GAE is $10 / Mo. cheaper. I'll check that out for new proje…
BTW: they use certificates with multiple SANs, so many different domains in the same certificate (and without SNI). This allows to terminate SSL on a single box for many different domains/customers. If you look at certificates details, you will see many unrelated domains in the SAN list.
Re: SSL + CNAME + static files hosting on GAE: almost free
#36Earlier quoted context omitted.
Yes, their domain-verified certs are free. I've been using them for a while now and haven't had any problems. See this post for browser support: https://forum.startcom.org/viewtopic.php?f=15&t=1802
Very nice, thanks. According to that page, Windows XP+, Mac OS 10.5+, iOS 2+, and Android 2.2+ are supported. I'll have to try them.
"The "StartCom Certificate Policy & Practice Statements" document §3.1.2.1 is explicit that the Class 1 (free) certificates are for non-commercial uses only.[3] The previous version of the CPS did not include this restriction.[4]"
You can, however, pay $60 for a personal validation (and potentially an extra $60 for company validation) to use the certs commercially. Actually, this validation lets you generate any number of SSL certificates for sites you own, for two years. This also includes wildcard certs, which you pay through the nose for from everyone else.
These guys are so much cheaper than the rest of the SSL vendors it's not funny. I've got my wildcard StartSSL certificate up on codano.com, and I've generated a few more for internal use. The validation literally took about two hours from start to finish, and most of that was just waiting for an email response/validation phone call and me scanning my passport and business documentation.
Can't recommend them enough.
Re: SSL + CNAME + static files hosting on GAE: almost free
#37EDIT: Wow, GAE charges $39/mo[1] for an IP? I know IPv4 is scarce, but i charge my customers $10/mo for SSL, and even that is a big markup on the $1/mo Linode charge me. I would honestly suggest going the VPS route to improve browser compatibility.
Re: SSL + CNAME + static files hosting on GAE: almost free
#38Earlier quoted context omitted.
Very nice, thanks. According to that page, Windows XP+, Mac OS 10.5+, iOS 2+, and Android 2.2+ are supported. I'll have to try them.
Note that these free certificates are considered non-commercial-use only. "The "StartCom Certificate Policy & Practice Statements" document §3.1.2.1 is explicit that the Class 1 (free) certificates are for non-commercial uses only.[3] The previous version of the CPS did not include this restriction.[4]" You can, however, pay $60 for a personal validation (and potentially an extra $60 for company validation) to use th…
Good info. Thanks!
Re: SSL + CNAME + static files hosting on GAE: almost free
#39Earlier quoted context omitted.
Note that these free certificates are considered non-commercial-use only. "The "StartCom Certificate Policy & Practice Statements" document §3.1.2.1 is explicit that the Class 1 (free) certificates are for non-commercial uses only.[3] The previous version of the CPS did not include this restriction.[4]" You can, however, pay $60 for a personal validation (and potentially an extra $60 for company validation) to use th…
Is a wildcard cert for subdomains, e.g. https://*.example.com ? And it's $60 altogether for any domain I control? Good info. Thanks!
Note that they will confirm that you are the owner of domains you try to request certs for.
Re: SSL + CNAME + static files hosting on GAE: almost free
#40We have a bunch of sites that are almost entirely static, but have a php "contact us" email form. Right now they are some bloated PHP CMS thing, and I would really like to switch them over to being static. Does anyone know of a cheap service that provides a form to send email we could have our contact form POST to?