Self Hosting or Proxying Analytics.js
Custom domains allow you to proxy Analytics.js and proxy all tracking event requests through your domain.
Custom Proxy prerequisites
To set up a custom domain, you need:
- Access to your site DNS settings
- A CDN you can serve assets from
- Access to the CDN settings
- A security certificate for the proxy domain
Custom Proxy Troubleshooting
If you experience issues configuring a custom proxy, contact your organization’s IT department for help. Segment does not have access to the resources you need to configure a custom proxy.
This guide explains how to set up a custom domain in CloudFront. You can apply these principles to almost any modern CDN that supports proxies.
You need to set up two important parts, regardless of the CDN provider you use:
- Proxy to Segment CDN (
cdn.segment.com
) - Proxy to Segment tracking API (
api.segment.io
)
If you are using a Regional Workspace, please note that instead of using api.segment.io
to proxy the Tracking API, you’ll be using events.eu1.segmentapis.com
Segment only has the ability to enable the proxy setting for the Web (Analytics.js) source. Details for mobile source proxies are in the Analytics for iOS and Analytics for Android documentation. It is not currently possible to set up a proxy for server sources using the Segment UI.
Custom Proxy setup
There are two options you can choose from when you set up your custom domain proxy.
Follow the directions listed for CloudFront or use your own CDN setup. Once you complete those steps and verify that your proxy works for both cdn.segment.com
and api.segment.io
, contact Segment Product Support with the following template email:
Hi,
This is {person} from {company}. I would like to configure a proxy for the following source(s):
* Source URL with Source ID
* Source URL with Source ID
- Source URL: link to the source in your Segment workspace (for example,
https://app.segment.com/<your_slug>/sources/<source>/overview
) - Source ID: navigate to API Keys on the left-hand side of the source Settings and provide the Source ID
Double-check the Source URL and the Source ID.
A Segment Customer Success team member will respond that they have enabled this option for your account. When you receive this confirmation, open the source in your workspace, and navigate to Settings > Analytics.js. Update the Host Address setting from api.segment.io/v1
to [your proxy host]/v1
.
The Host Address field does not appear in source settings until it’s enabled by Segment Customer Success.
Custom CDN / API Proxy
Follow these instructions after setting up a proxy such as CloudFront. Choose between the snippet instructions or the npm instructions.
If you’ve followed the instructions above to have a Segment team member enable the apiHost settings in the UI, you can skip the instructions in this section.
Snippet instructions
If you’re a snippet user, you need to modify the analytics snippet that’s inside your <head>
.
To proxy settings and destination requests that typically go to https://cdn.segment.com
, replace:
- t.src="https://cdn.segment.com/analytics.js/v1/" + key + "/analytics.min.js"
+ t.src="https://MY-CUSTOM-CDN-PROXY.com/analytics.js/v1/" + key + "/analytics.min.js"
To proxy tracking calls that typically go to api.segment.io/v1
, replace:
- analytics.load("<MY_WRITE_KEY>")
+ analytics.load("<MY_WRITE_KEY>", { integrations: { "Segment.io": { apiHost: "MY-CUSTOM-API-PROXY.com/v1" }}})
npm instructions
See the npm
library-users instructions for more information.
Proxy settings and destination requests that typically go to https://cdn.segment.com
through a custom proxy.
const analytics = AnalyticsBrowser.load({
writeKey,
// GET https://MY-CUSTOM-CDN-PROXY.com/v1/projects/<writekey>/settings --> proxies to
// https://cdn.segment.com/v1/projects/<writekey>/settings
// GET https://MY-CUSTOM-CDN-PROXY.com/next-integrations/actions/...js --> proxies to
// https://cdn.segment.com/next-integrations/actions/...js
cdnURL: 'https://MY-CUSTOM-CDN-PROXY.com'
})
Proxy tracking calls that typically go to api.segment.io/v1
by configuring integrations['Segment.io'].apiHost
.
const analytics = AnalyticsBrowser.load(
{
writeKey,
cdnURL: 'https://MY-CUSTOM-CDN-PROXY.com'
},
{
integrations: {
'Segment.io': {
// POST https://MY-CUSTOM-API-PROXY.com/v1/t --> proxies to
// https://api.segment.io/v1/t
apiHost: 'MY-CUSTOM-API-PROXY.com/v1',
protocol: 'https' // optional
}
}
}
)
Custom Proxy CloudFront
These instructions refer to Amazon CloudFront, but apply more generally to other providers as well.
CDN Proxy
To set up your CDN Proxy:
- Log in to the AWS console and navigate to CloudFront.
- Click Create Distribution.
- Configure the distribution settings. In the Origin section, update the following values:
- Origin Domain Name:
cdn.segment.com
- Protocol:
HTTPS only
- Origin Domain Name:
- In the Default cache behavior section, configure the following values:
- Viewer protocol policy:
Redirect HTTP to HTTPS
- Allowed HTTP Methods:
GET, HEAD, OPTIONS, PUT, POST, PATCH, DELETE
- Viewer protocol policy:
- In the Settings section, configure the following values:
- Alternate domain name (CNAME):
analytics.<yourdomain>.com
- Custom SSL certificate: Select an existing or new certificate to validate the authorization to use the Alternate domain name (CNAME) value. For more information, see Amazon’s documentation Requirements for using alternate domain names.
- Alternate domain name (CNAME):
- Click Create Distribution.
Take note of the Domain Name for use in the next step.
Add CNAME Record to DNS
To add a CNAME record for the Segment proxy to your organizations DNS settings:
- Use a name that makes it clear what you are using the subdomain for, for example
analytics.mysite.com
. - Go to your domain registrar and add a new record to your DNS of type “CNAME”.
- Configure these values:
- Name:
<subdomain_name>.yourdomain.com
- Value: The Domain Name value from CloudFront
- Name:
- Save your record. This might take some time to take effect, depending on your TTL settings.
- Make a
curl
request to your domain to verify that the proxy works.
Tracking API Proxy
Set up a proxy for the tracking API so that all calls proxy through your domain. To do this, set up a CloudFront distribution that’s similar to the one in the previous section, with the exception of the Origin Domain Name:
Field | Value | Description |
---|---|---|
Origin Domain Name | api.segment.io |
The domain name to which the proxy is served |
Add CNAME Record to DNS
To add a CNAME record to your DNS settings:
- Go to your domain registrar and add a new record to your DNS of type “CNAME”. This time use the CloudFront distribution for the tracking API proxy.
- Enter values for these fields:
- Name:
<subdomain_name>.yourdomain.com
- Value: Tracking API CloudFront Distribution Domain Name
- Name:
- Save your record. This might take some time to take effect, depending on your TTL settings.
- Run
curl
on your domain to check if the proxy is working correctly.
Self Hosting Analytics.js
Follow the instructions at Using Analytics.js as an NPM Package, to host Analytics.js and eliminate the requirement of downloading it from the CDN file during every page load. This enables you to self-host/import the library itself.
Segment does not recommend self-hosting, as it requires that you configure integration settings individually and manually redeploy Analytics.js when there are changes to your settings. When you enable third-party libraries in device-mode, Segment loads them, which defeats the purpose of self-hosting.
This page was last modified: 08 Sep 2023
Need support?
Questions? Problems? Need more info? Contact Segment Support for assistance!