Tiffani 7e199944da
Updating title tags and meta descriptions (#2509)
* Update title tags and meta desc for Templates

* Update title tags and meta desc for Learn

* Update title tags, meta desc, and H1s for Case Studies

* Update themes/default/content/learn/abstraction-encapsulation/_index.md

Co-authored-by: susan evans <susan.ra.evans@gmail.com>

* Update themes/default/content/learn/embedding-pulumi/_index.md

Co-authored-by: susan evans <susan.ra.evans@gmail.com>

* Update themes/default/content/learn/embedding-pulumi/building-api/index.md

Co-authored-by: susan evans <susan.ra.evans@gmail.com>

* Update themes/default/content/learn/building-with-pulumi/stack-references/index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/container-service/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/kubernetes/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/serverless-application/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/virtual-machine/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/static-website/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update atlassian.md

* Update index.md

---------

Co-authored-by: susan evans <susan.ra.evans@gmail.com>
Co-authored-by: Sean Holung <sean.holung@gmail.com>
2023-03-14 11:25:48 -07:00

35 lines
2.2 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title_tag: Templates for Deploying Static Websites
title: Static Website Templates
layout: overview
description: Pulumi program templates are the fastest way to deploy static websites on AWS, Azure, or Google Cloud Platform. Templates come with predefined infrastructure as code so you can get started instantly.
meta_desc: Easily deploy static HTML websites on AWS, Azure, or Google Cloud Platform with Pulumi Static Website templates.
meta_image: meta.png
weight: 1
---
### What are static websites?
Static websites are an efficient and scalable way of building and serving websites created with HTML, CSS, and JavaScript. Popular frameworks for static websites include Next.js, Hugo, Gatsby, Jekyll, and more.
**On [AWS](/aws/),** you can host a static website by configuring Amazon S3 for hosting and Amazon CloudFront as the CDN. You could also use AWS Amplify, which is designed for deploying static websites more easily.
**On [Azure](/azure/),** you can host a static website by configuring Azure Blob Storage for hosting and Azure CDN for content delivery. You could also use Azure Static Web Apps, which provides a CI/CD pipeline for deploying static websites.
**On [Google Cloud Platform](/gcp/),** you can host a static website by configuring Cloud Storage for hosting and Cloud Load Balancing with HTTPS configured.
### Building and deploying static websites on AWS, Azure, and Google Cloud
[Infrastructure as code](/what-is/what-is-infrastructure-as-code/) is an efficient and repeatable way of building a static website with programming languages and deploying the website to your preferred cloud.
Pulumis open source, infrastructure as code SDK lets you build and deploy static websites with TypeScript/JavaScript, Python, Go, Java, .NET, and YAML. The main benefits include:
* **Programming Languages:** Define infrastructure as code in your favorite language instead of domain-specific languages or clicking through cloud consoles.
* **Easier Integration:** Integrate every cloud service needed to run your static website into a single program.
* **Fast, Easy Deployment:** Quickly deploy your static website with a CLI or from a CI/CD workflow.
* **Rapid Development:** Author, version, test, and release infrastructure changes just like software.