Deploying Static Websites Using OSS and CDN on Alibaba Cloud

Alibaba Cloud
8 min readNov 7, 2018

By Vasily Grigorash, Solutions Architect

Being a collection of static files — a static website and a frontend application have virtually no difference when it comes to deployments. They both come with static files such as HTML, CSS, JS, JPEG, and PNG.

A common approach for hosting static websites on Alibaba Cloud is to use the “static hosting” feature of Object Storage Service (OSS) and Content Delivery Network (CDN):

  1. No server is required to host the assets
  2. OSS stores redundant copies of the assets across multiple zones within a region; thus, region-level high availability is provided for the origin of the assets without the need to do anything additionally
  3. CDN is used to improve delivery and, thus, the user experience
  4. CDN is a massive global network of interconnected servers so high availability is provided at global level for the user facing servers
  5. OSS is very cheap

This guide aims to introduce an approach to deploying static websites/frontend applications onto Alibaba Cloud in a simple and reliable manner. It serves as a good reference for a company’s engineering team wishing to automate deployments. It should be noted that even though this practice can be used with video, audio and large files, Alibaba Cloud CDN provides a CDN type optimized for each of those use cases (thus, even a better user experience can be delivered by separating these assets and using a dedicated CDN type for each one of them).

Prerequisites

The following things will be required to follow this guide:

  1. Aliyuncli and ossutil installed and configured. If you have Docker installed, a quicker alternative is to use the “python-toolbox” which includes both
  2. curl installed (alternatively, you can use a browser with the inspection functionality in sections where we inspect headers)
  3. Firm understanding of Object Storage Service (OSS) and Content Delivery Network (CDN)
  4. Essential Linux skills on a Linux box

Architecture

The diagrams below show the simplified flow of what we will be implementing:

So what’s happening here? The machine with the source assets (“Source”) pushes them up to OSS. OSS serves as the “Origin” for the CDN which will fetch assets from it whenever it can’t find a copy of the asset in its cache; the CDN accepts all requests for static files.

Implementation

OSS Bucket

Create your OSS bucket or use an existing one. I’ll be using the CLI for this:

# ossutil mb oss://angry-medusa
1.244258(s) elapsed
# ossutil ls oss://angry-medusa
Object Number is: 0
0.350505(s) elapsed

Upload to OSS

Upload some static files in the current directory to the newly created bucket; in this example, we’re uploading 1 documents — an index.html

# ossutil cp . oss://angry-medusa –rf

Here’s what it might look like:

We now have the file in OSS. Now, let’s make sure it serves these static assets.

OSS Static Page Feature

Head over to the console and the bucket and, first, set the ACL to public read:

Now, set the default homepage to the index.html page of ours:

Let’s verify that the OSS is able to serve our index.html:

Cool, we’ve got a page hosted on OSS. Simple and easy.

Adding the CDN

Although good enough for sites with little traffic, OSS alone cannot cope with large volumes of traffic (i.e. massive concurrent reads) and is bound to a region. To deliver a much better user experience the CDN should be used which would serve the cached static assets from a node which is physically closer to the user not to mention. Another comes from the CDN absorbing all the incoming reads instead of OSS.

Head over to the console and set up a CDN domain pointing to our OSS as the Origin and use “Overseas” as the region (China and Global options would require you to obtain an ICP license):

Wait for the CDN to kick in:

Now, let’s load our micro website through the CDN. By clicking on the newly created CDN we can bring up the details page where we can configure the caching rules:

At the time of writing, the default behavior of the CDN is to cache resources for 10 seconds. This is far from an optimal setting as it makes the CDN go back to Origin too often. Let’s set up a rule that will cache all resources for a whole month:

Let’s note down the DNS CNAME we got for our CDN:

Because we don’t actually own the domain and don’t have it bound to the CDN CNAME we will be sending the “Host” header in curl to work around this:

We can see that our first request missed the cache. Let’s try issuing another one:

So that request actually was served from the cache. Let’s see what happens if we update our source html file, upload again to OSS and query OSS and the CDN:

You can see that the CDN is serving a stale version of the file. Because we actually know when the file changed and which file changed we are able to invalidate the CDN and then test that the updated file is served:

Notice, that this time we’re using the full path in our curl and invalidation. The reason behind this is the behavior of the CDN which works on exact file/directory names, i.e. a request to “http://angry-medusa.me.w.kunlungr.com/" would still serve us the stale file because we did not invalidate the root directory.

Besides invalidating the cache which can be referred to as a “pull”, the other technique is to “push” the newer version of the asset into the CDN. The diagram below illustrates the main difference between these 2 techniques:

Given a resource gets hit by a massive number of requests and its invalidation occurs, it is possible that the CDN will be not be effective for the amount of time it takes to obtain the new version from OSS as all the requests for the new resources will be forwarded to the origin. Although very robust OSS has a certain concurrent read limit which may as well be exhausted. In such a scenario, the approach on the right is more favorable as it guarantees that the CDN always operates on a “HIT” basis with assets being actively “pushed” into instead of relying on the logic of retrieving it from the origin.

Locking OSS Down

So far we’ve actually had the ability to request the page from either the OSS or the CDN. In a real environment, this is not desirable as malicious users can easily exhaust OSS reads. To fix this, first head over to the OSS in the console and change the bucket from “Public Read” to “Private”:

Now head over to the CDN console and change the settings for the bucket:

If you haven’t authorized CDN before to use OSS, do so by:

You’ll be directed to the access enablement page:

Note, that this is a general access rule; you may wish to restrict access finer through the RAM console. After reloading the form, it enable access to OSS from CDN:

Let’s verify that we no longer can access OSS directly but CDN has no problems fetching the assets from the Origin:

That’s it to it; we now block direct access to OSS and allow access to it from the CDN.

Conclusion

As you can see it is fairly simple and straightforward to deploy a frontend application and reap the significant benefits of OSS and CDN:

# copy your assets over:
# ossutil cp . oss://angry-medusa –rf
# invalidate the cache through pull:
# aliyuncli cdn RefreshObjectCaches --ObjectType Directory --ObjectPath http://angry-medusa.me/
# invalidate through push
# aliyuncli cdn PushObjectCache --ObjectPath http://angry-medusa.me/ --ObjectTyp
e Directory
# party

This document explains a simple way to deploy frontend applications onto Alibaba Cloud using OSS’ static website hosting feature paired with a CDN. This approach allows teams to quickly start deploying their frontend applications without having to go through the pains of setting up and maintaining web server infrastructure.

Further Reading

  1. Alibaba Cloud CLI: https://github.com/aliyun/aliyun-cli
  2. OSSUTIL: https://www.alibabacloud.com/help/doc-detail/50452.htm?spm=a3c0i.l31815en.a3.107.4664aad5Ay6lpd
  3. CLI extensions: https://github.com/aliyun/aliyuncli-python-toolbox/tree/master/acs
  4. Docker image: https://hub.docker.com/r/aliyunca/aliyuncli-python-toolbox/
  5. GitHub repo for image: https://github.com/aliyun/aliyuncli-python-toolbox

Reference:https://www.alibabacloud.com/blog/deploying-static-websites-using-oss-and-cdn-on-alibaba-cloud_594120?spm=a2c41.12228569.0.0

--

--

Alibaba Cloud

Follow me to keep abreast with the latest technology news, industry insights, and developer trends. Alibaba Cloud website:https://www.alibabacloud.com