Live data from Hacker News

SSL + CNAME + static files hosting on GAE: almost free

blog.superfeedr.com

21–30 of 45 posts

Re: SSL + CNAME + static files hosting on GAE: almost free

#21

We 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?

http://www.wufoo.com/examples/#contactform or a google docs form maybe.

Re: SSL + CNAME + static files hosting on GAE: almost free

#22
post #8
post #4

Earlier quoted context omitted.

So, http://www.cloudflare.com/plans shows that to get your custom SSL, you need a "Business" plan at $200/month... so about 20x more expensive than GAE in this case.

are you certain about needing a business plan, it looks to me that pro for $20/month also supports SSL? perhaps I'm missing an important bullet? [update]: i am guessing from the language on the "SSL encryption type" bullet: "CloudFlare-issued" vs "CloudFlare-issued or custom" or custom must be what's required to host your own domain ssl cert?

From my understanding, CloudFlare issued means they use their partner CA to generate you a certificate, while custom means you can source your own certificate and provide it to them.

They've already done as much checking for domain ownership as StartCom do, so they're free to issue you a certificate safely, especially as it will never leave their infrastructure.

Re: SSL + CNAME + static files hosting on GAE: almost free

#23

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

How does this handle the majority of users who use webmail clients?

Re: SSL + CNAME + static files hosting on GAE: almost free

#24

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

Yes, but since half the people who contact us have no smtp server, that doesn't work out too well.

Re: SSL + CNAME + static files hosting on GAE: almost free

#25

Earlier quoted context omitted.

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

Yes, but since half the people who contact us have no smtp server, that doesn't work out too well.

Not sure about operating system's other than Windows, but gmail (opens a compose window in a new window) is my "default" handler for mailto: links.

Re: SSL + CNAME + static files hosting on GAE: almost free

#26
post #3

StartSSL is free?! Has anyone used them before? Are their certs widely accepted/trusted?

There are some restrictions. From wikipedia:

While certificates are free for certain uses, there are limitations imposed unless an upgrade is purchased: - One-year validity. - One domain name per certificate. - One certificate per domain name. - No commercial use

The last is probably a deal breaker for many sites.

Re: SSL + CNAME + static files hosting on GAE: almost free

#27
post #13
post #9

Earlier quoted context omitted.

You read that page wrong. It's only the Pro plan that you need for custom SSL, which is $20/month. I use it with 5 different HTTPS-enabled domains on CloudFlare.

Well, my requirement is to have SSL on my own domain... and GAE offers that for $9. I think you did not read (right or wrong) the blog post :p

CloudFlare provides an SSL certificate if you subscribe to their Pro plan, and it does work on your own domain (www and root). That way, you don't have to use StartSSL.

Re: SSL + CNAME + static files hosting on GAE: almost free

#28

We 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

#29
post #4

Earlier quoted context omitted.

So, http://www.cloudflare.com/plans shows that to get your custom SSL, you need a "Business" plan at $200/month... so about 20x more expensive than GAE in this case.

$20 a month for basic ssl. I have 2 criticisims of cloudflare and im a paying customer, which arent even close to making me look for alternatives. 1. They have had a few outages (but everybody does, amazon included). 2. Ive made their page rules engine do what i need but i felt their docs were not deep / technical enough about how their engine works. I had to play a bit to get exactly what i wanted. I have largely be…

I've had problems with email delivery on a domain with a CNAME'd root. I'd avoid it if you can.

Re: SSL + CNAME + static files hosting on GAE: almost free

#30

We 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?

You could use Google Forms. Extract the POST URL,build your own static form and put the POST URL there. Then you query your data with Google Docs
Post reply on HN