🎉 Introducing Edgio v6 which supports Node.js v16. Learn how to upgrade. 🎉
Edgio
Edgio

Gatsby

This guide shows you how to deploy an Gatsby application to Edgio.

Example

Connector

This framework has a connector developed for Edgio. See Connectors for more information.

System Requirements

Sign up for Edgio

Deploying requires an account on Edgio. Sign up here for free.

Install the Edgio CLI

If you have not already done so, install the Edgio CLI.

Bash
1npm i -g @edgio/cli

Getting Started

If you don’t already have a Gatsby application, you can create one using:

Bash
1npm install -g gatsby-cli
2gatsby new gatsby-site https://github.com/gatsbyjs/gatsby-starter-hello-world

You should now have a working Gatsby site. Run gatsby develop to see the application running on localhost:8000.

Configure your project for Edgio by running the following command in your project’s root directory:

Bash
1edgio init

This will automatically add all of the required dependencies and files to your project. These include:

  • The @edgio/core package
  • The @edgio/gatsby package
  • The @edgio/cli package
  • edgio.config.js
  • routes.js - A default routes file that sends all requests to your Gatsby static site. Update this file to add caching or proxy some URLs to a different origin.

Running Locally

You can test the integration of the Sites router with your gatsby site locally using:

Bash
1edgio dev

Deploying

Deploy your app to the Sites by running the following command in your project’s root directory:

Bash
1edgio deploy

See Deployments guide for more information.

Routing

The default routes.js file created by edgio init sends all requests to the Gatsby static site.

JavaScript
1// This file was added by edgio init.
2// You should commit this file to source control.
3
4const {Router} = require('@edgio/core/router');
5const {gatsbyRoutes} = require('@edgio/gatsby');
6
7module.exports = new Router().use(gatsbyRoutes);

Adding routes to a different origin

To proxy some URLs to a different origin, you need first to configure that origin in your edgio.config.js file.

For example:

JavaScript
1// edgio.config.js
2
3module.exports = {
4 backends: {
5 legacy: {
6 domainOrIp: process.env.LEGACY_BACKEND_DOMAIN || 'legacy.my-site.com',
7 hostHeader:
8 process.env.LEGACY_BACKEND_HOST_HEADER || 'legacy.my-site.com',
9 },
10 },
11};

Using environment variables here allows you to configure different legacy domains for each Edgio environment.

Then you can add routing and caching rules to your routes.js file. Note that gatsbyRoute must be declared last as it acts as a fallback route.

For example:

JavaScript
1// routes.js
2
3const {Router} = require('@edgio/core/router');
4const {gatsbyRoutes} = require('@edgio/gatsby');
5
6module.exports = new Router()
7 .get('/some/legacy/url/:p', ({proxy}) => {
8 proxy('legacy');
9 })
10 .use(gatsbyRoutes);

Check CDN-as-code and Caching guides for more information.