Update: Google Drive no longer offer the ability to serve web pages so this post is no longer relevant.
Google Drive allows a very convenient and free way
host web pages. You simply share the folder to the public and anyone can go to http://googledrive.com/host/<folder id> with their browser and see your web site. Publishing a page or any file is just a matter of dropping it into the drive folder. However, Drive currently doesn't support custom domains so if you have your own domain (e.g. example.com) you can't have http://www.example.com be served from Drive.
There is a site,
http://gweb.io, that allows you to do this for about $10/year, but I've never used them or know much about them. Instead, this article will describe one way to roll your own using
Google App Engine (GAE) and if your site only have moderate traffic you should be able to stay within its free quota. Note: this was a quick hack I did and not meant to be a high performance web site. Don't be running your own Google with this! :-)
The basic idea is very simple. GAE allows you to have custom domains so you create an app on it and it can map to your domain (e.g. http://www.example.com). What the app will do is take the URL, translate it to the googledrive.com URL and fetch the page for you and return it through app engine.
From
http://www.example.com/page1.html
To
http://googledrive.com/host/page1.html
With the mapping, use GAE's FetchURL service to grab the file and pass it back to the caller. That's it.
Follow the GAE tutorial on setting up a basic helloworld app (such as this
one for Go). Instead of hello.go, I have file called "fetch.go" and instead of "package hello" it is "package fetch". For the content of fetch.go:
Remember to put in your folder ID in fetch.go at line 20 (I should've made it a constant and easier to spot).
Now give it a try on your local server to make sure it works and then
upload your project. If everything is working well, you can them
map this app to your domain. That's it!
Now, this is not very optimized and only really recommended for small sites. For example, this will fetch from googledrive on every request and the browser might not be able to cache it. For the former, it would be easy to insert memcache to keep a cached version on the server side. For the latter, we'd want to stick in some headers to help browsers cache the file unless the file is updated very frequently.
Anyway, with GAE's generous free quota, this might work well for many small sites out there to serve some examples web sites or landing pages.
One question we might ask ourselves is that why use Drive at all if you're using GAE already? For me it was mainly convenience of being able to just drop the file into a drive folder and 'cause I just wanted to write some Go code on GAE.