Static IP guide

Making API requests with a static IP from a Node app on Fly.io

Fly.io machines can stop, start, and migrate between hosts, and their shared egress IPs offer no stability for API allowlisting. Store your Fixie proxy URL with fly secrets set FIXIE_URL=... and route axios through it; the partner API then sees the same two addresses from every machine and region.

RuntimeNode.js and JavaScript
PlatformFly.io
DestinationAPI allowlisting
Fixie productFixie HTTP/S proxy

Recommended setup

Use Fixie HTTP/S proxy for HTTP and HTTPS requests to an API, webhook provider, or service that allowlists outbound IP addresses. Store the proxy value in FIXIE_URL, then configure Node.js to route outbound traffic through Fixie before connecting to API allowlisting.

Set up Fixie on Fly.io

Create a Fixie HTTP/S proxy in the Fixie dashboard. Copy the proxy value into Fly.io secrets as FIXIE_URL, and copy the outbound IPs into the destination allowlist.

Set a Fly.io secret

fly secrets set FIXIE_URL=...

Implementation

The example below shows the core application-side change. Keep credentials in environment variables and avoid committing proxy, database, or API secrets.

Make an HTTP request through FIXIE_URL

const axios = require('axios');

const fixieUrl = new URL(process.env.FIXIE_URL);

axios.get('https://api.example.com/data', {
  proxy: {
    protocol: 'http',
    host: fixieUrl.hostname,
    // URL drops default ports, so fall back to 80 for Fixie's standard proxy port.
    port: Number(fixieUrl.port) || 80,
    auth: {
      username: fixieUrl.username,
      password: fixieUrl.password,
    },
  },
}).then((response) => {
  console.log(response.status);
});

Good to know

  • Check fly status for your app's REGION and create the Fixie proxy in the nearest Fixie region to keep the extra hop short.
  • fly secrets set triggers a release, after which process.env.FIXIE_URL is live on all machines — no separate deploy step.

Allowlist and test the static IPs

  1. Open the Fixie dashboard and copy the outbound IP addresses for this proxy.
  2. Add both IPs to the API provider.
  3. Deploy the updated Node.js app on Fly.io.
  4. Run a small connection test before sending production traffic.

Related guides

Related docs