Hosting a Vue.js Single Page Application (SPA) on AWS Simple Storage Service (S3)

Recently, I was responsible for deploying and hosting a Vue.js frontend application on AWS. This project required HTTPS, a custom domain, a hosting service for the deployment files, and a content delivery network. As such, I decided to share the process as a step-by-step tutorial to help others who may need it.

Objectives

In this tutorial, we will do the following:

Requirements

We need an AWS account to be able to host and secure our single-page application in the cloud. To accomplish our objectives, we will use the following services:

Some of the benefits of using the above choice of services are:

See below the architecture pattern for our hosted single-page application on AWS Cloud.

By the end of this tutorial, you will have successfully hosted your application on AWS, and it will be globally available. Alright, let’s get started.

Step 1: Build the Site for Production

Depending on how you’ve created your site, I’ll leave it to you to build the production codebase. I used Vue Cli to code my web application, so I will use the npm run build command to compile my production site.

We have successfully built the web application, and this created a dist directory.

Step 2: Set up a Domain in Route 53

Step 3: Host the single-page application in S3

Now, our bucket is all set to be served up.

Step 4: Set up IAM User for Programmatic Access to the S3 Bucket

This process enables us to programmatically access AWS S3 from our local machine using the aws-cli. We will use the credentials to show that we are authorized to make changes to the S3 bucket. To accomplish this, we need to create an IAM policy and user.

This policy grants read and write access to our S3 bucket

Step 5: Deploy to S3 Bucket from the CLI

We’ll set up a local AWS profile using aws configure command with the credentials generated from the above step:

~/$ aws configure --profile S3-VueJs-User1
AWS Access Key ID [************]: PASTE ACCESS KEY ID FROM AWS
AWS Secret Access Key [********]: PASTE SECRET ACCESS KEY FROM AWS
Default region name [None]: us-east-1
Default output format [None]: None

Running aws configure sets up credentials in a file stored at ~/.aws/credentials. After setting up the AWS profile, we can proceed to access our S3 bucket from the CLI.

~/$ aws --region us-east-1 --profile S3-VueJs-User1 s3 ls s3://BUCKET-NAME-GOES-HERE
~/$ aws --region us-east-1 --profile S3-VueJs-User1 s3 sync ./dist s3://BUCKET-NAME-GOES-HERE –delete

Note: One of the limitations of static web hosting is that S3 website endpoints do not support HTTPS.

Step 5: Request SSL Certificate using AWS Certificate Manager (ACM)

ACM offers free public certificates to provide Secure Socket Layer (SSL) and Transport Layer Security (TSL) encryption for your websites over the internet.

Step 6: Set up our CloudFront Distribution

CloudFront is a Content Delivery Network (CDN) that caches and serves copies of our websites at edge locations, thereby making our website faster to access. CloudFront also enables us to configure HTTPS while improving the performance of our site.

This setting will redirect all error responses to index.html, letting the single-page application handle routing.

  1. Navigate to the distribution Error page tab.
  1. We will create two custom error responses (403 Forbidden and 404 Not Found). Click on Create custom error response
  1. Set HTTP Error Code to 403/404
  1. Set Error caching minimum TTL to 0 seconds
  1. Set Customized error response to Yes
  1. Set Response Page Path to /index.html
  1. Set HTTP Response code to 200: OK
  1. Repeat the above steps for the second distribution

Step 7: Configure Route53 DNS record

This configuration points Route53 to our CloudFront distribution. We will create an A Record, which will serve as an alias that resolves our custom domain name to our CloudFront distribution.

Step 8: Modify S3 Bucket Policy

Lastly, we will navigate to our S3 bucket to remove the bucket policy added in Step 3 above. This modification will remove public access to our S3 bucket, and grants access to CloudFront only.

Note: Making changes to your SPA can take some time to propagate. However, you can create a CloudFront Invalidation to clear the cache for CloudFront when testing new configurations.

That’s it for today, great work. Now, if you try accessing the URL, you should see that your site is live. Also, let’s check if the HTTPS configuration is working and if HTTP redirects to HTTPS.

Conclusion

The goal of this tutorial was to guide us through the steps of deploying a Vue.js application to AWS for hosting and making the necessary changes to allow HTTPS and a custom domain name.

Thanks for reading!

If you enjoyed reading this post, follow on Twitter and Medium for more content. Please, If you have any feedback, suggestions, or something you’d like to see in a future post. Kindly leave them in the comments below, and I’ll do my best to get back to you.