cs-icon.svg

Hosting a Static Website on Amazon S3

Amazon Simple Storage Service, or simply S3, is a scalable, web-based cloud storage service offered as part of Amazon Web Services.

It is used for backing up data and applications online. You can use Amazon S3 for hosting or deploying static websites. In this guide, we will look at the steps required to host a static website on Amazon S3.

Prerequisites

Steps for Execution

Deploying a website on S3 is a 4-step procedure:

  1. Generate Access Keys in AWS
  2. Install and configure the AWS Command-line Interface (CLI)
  3. Create an AWS S3 bucket
  4. Deploy the website on S3

    Note: Before we start, it is assumed that you already have a website running on the localhost with Gatsby as the front-end and Contentstack as the back-end. We suggest you follow the steps mentioned in the Build a Sample Website Using Gatsby and Contentstack and get your website ready.

    1. Generate Access Keys in AWS

      To host our website on S3, we'll require the Access Key ID and Secret Access Key to be generated. To do this, you need to have an IAM account with administrative permissions.

      Assuming that you have the required permissions in AWS and have logged in to your AWS Management console, perform the following steps:

      1. On your AWS Management Console screen, click your username at the header and then My Security Credentials.
      2. On the Your Security Credentials page, expand the Access keys (access key ID and secret access key) tab.
      3. Click on the Create New Access Key button and then Show Access Key. This will display the keys.

        Ensure that you save the keys. You’ll need these keys while configuring the AWS CLI in the next step.

        You can also download the keys by clicking on the Download Key File button.


      With these steps, the access keys are available. Let's now move ahead to install the Amazon CLI and configure it.

    2. Install and Configure the AWS Command-line Interface

      To deploy a website from your terminal (command prompt), configure the AWS CLI on Ubuntu/Windows as follows:

      1. Install AWS CLI:

        • For Ubuntu, execute this command in the terminal:
          sudo apt install awscli
          
        • For Windows, download the AWS CLI MSI installer and set it up.

          Additional Resource: For more information on Windows installation, refer to AWS CLI documentation.

        Alternatively, if you have installed Python 3, you can run this command to install AWS CLI:

        pip3 install awscli
        
      2. Once you’ve installed the AWS CLI, verify the installation by running the following command in the terminal:

        aws --version
        
        After running the above command, it will display the installed version of the AWS CLI on your system. 
      3. After installing the AWS CLI on respective systems, configure it with your AWS account’s access keys by running this command in the terminal:

        aws configure
        
      4. It will then ask to enter the “Access Key ID” and “Secret Access Key” as shown in the image below:

        aws_configure.png
      5. The command will also prompt you to enter the default region and output format, which you can skip by hitting the “enter” key.

      With these steps, we have configured the AWS CLI.

    3. Create an AWS S3 Bucket

      A bucket in S3 is cloud storage that will host your website data. To create an S3 bucket, perform the following steps:

      1. From the Services drop-down (at the header), select S3.
      2. On the Amazon S3 page, click on the Create bucket button.
      3. The Create bucket page opens for you to configure the bucket as follows:
        • Bucket name: Type a globally unique name for your bucket
        • AWS Region: Select a region where you want to create a bucket.
      4. Under the Block Public Access settings for this bucket section, uncheck the Block all public access option.
        Ensure to acknowledge the warning of objects (within an S3 bucket) becoming public.
      5. uncheck-block-public-access.png
      6. Skip to the end of the page and click on Create bucket.

      You’ve successfully created an S3 bucket. Next, let’s get started with the deployment process.

    4. Deploy the Website on S3

      Assuming that you have a Gatsby website, perform the following steps to deploy it:

      1. Open your terminal (command prompt), point it to your project’s root directory, and install the Gatsby S3 Plugin by running the following command:
        npm i gatsby-plugin-s3
        
      2. Next, open the gatsby-config.js file and add the following code snippet in your plugins array:
        {
            resolve: `gatsby-plugin-s3`,
            options: {
              bucketName: "mention your s3 bucket name here",
            },
          },
        
        Provide your S3 bucket’s name as the value for the bucketName parameter.

        Refer to the image below to understand the placement of the code snippet:gatsby-config-file.png

      3. Go to the package.json file to add this deployment script within the scripts section:
        "deploy":"gatsby-plugin-s3 deploy"
        You can refer to the image below to understand the code placement: package-file.png

      4. Before deploying the Gatsby website, make it production-ready by executing the following command in the terminal of your project’s root directory:
        npm run build
        
      5. After successful build process, execute this command in the terminal to deploy the website:
        npm run deploy
        
        Once deployed, you will get a link similar to this one:
        http://gatsby-site-deploy-v1.s3-website.us-east-2.amazonaws.com/

    More Resources

    Was this article helpful?
    ^