We frequently update our products, and Cloud Files is no exception. In this series of technical posts, we’ll dig into how developers using the Cloud Files API can leverage new capabilities in Rackspace Cloud Files.
You can now use your Cloud Files account to create a static website. First, you must CDN-enable a storage container. Any HTML or static web pages in the container will become available through a static website once you set the X-Container-Meta-Web-Index header to index.html or other index page of your choice. You may also create subdirectories in your website by creating pseudo-directories, as outlined in the pseudo directory section of this guide. Each pseudo-directory becomes a subdirectory in the website.
The page you set for X-Container-Meta-Web-Index becomes the index page for every subdirectory in your website; each pseudo-directory should contain a file with that name. So, if you set X-Container-Meta-Web-Index to index.html, you should have an index.html page in each pseudo-directory. If you do not have the named index page, visits to myhost/subdir/ will return a 404 error.
curl -X POST -H "X-Container-Meta-Web-Index: index.html" -H "X-Auth-Token: 19264db3-c845-40ea-86ed-8a33d89bfe00" "https://storage101.dfw1.clouddrive.com/v1/MossoCloudFS_a55df/MyLibrary/
Once your container is configured for Static Web and your domain host has your CNAME recorded, you will get the following results.
container/index.html container/page2.html container/subdir/index.html container/subdir/pageX.html
In the results below, the user’s CNAME is myhost, and the X-Container-Meta-Web-Index is set to index.html. The results on the right of the example are the pages that display in the Web browser.
http://myhost Displays container/index.html http://myhost/page2.html Displays container/page2.html http://myhost/subdir Displays container/subdir/index.html http://myhost/subdir/ Displays container/subdir/index.html http://myhost/subdir/pageX.html Displays container/subdir/pageX.html
This is just one of many new features in Rackspace Cloud Files that developers can take advantage of. Cloud Files customers are urged to try out this new feature in their next API project or add it to a current application. If you’re not yet using Cloud Files, sign up for an account and check it out. And now, using Cloud Files is more affordable since we reduced the cost of Cloud Files by 33 percent.
Here is also an example which shows how to do that using Apache Libcloud – http://libcloud.apache.org/docs/storage-examples.html#publishing-a-static-website-using-cloudfiles-driver
nice feature, welcome one, but too late. would be great to have a UI to configure thru our a/c.
@Tomaz Muraus – Tx for the link on Libcloud, looks like a really nice API to use.
Sharing a file from one person to another is file sharing.
file hosting and web hosting is same . to host a site we require domain name.
This is a welcome development. This time last year I had a requirement for this and I postulated with Rackspace support that there wasn’t really anything to stop me hosting a static site in a Cloud Files container using a CNAME but just that ominously it wasn’t “supported”.
The only downside is the sheer lack of truly static sites these days! But with some smart engineering/architecture it could prove very useful in a small number of cases. Thanks for adding the feature!