average-waiter-16619
05/14/2026, 11:39 AMastonishing-engineer-93454
05/16/2026, 6:23 PMwindow.gbEventsaverage-waiter-16619
05/18/2026, 1:44 PMdata-tracking="growthbook" included (see attached screenshot), and the experiments do run on the site. The problem is that sometimes events are not being sent, as the scripts are blocked due to access control checks.
@nutritious-notebook-68264 recommended that we create a proxy, however that didn't help, as there still is another domain that is not proxied and that is being blocked: gb-ingest.com
Do we need to add a proxy for that domain as well? It is not described in the docs though (https://docs.growthbook.io/self-host/proxy#using-with-the-sdks)astonishing-engineer-93454
05/18/2026, 10:33 PMaverage-waiter-16619
05/19/2026, 8:35 AMfresh-football-47124
fresh-football-47124
average-waiter-16619
05/22/2026, 3:44 PM<http://us1.gb-ingest.com|us1.gb-ingest.com>
We've proxied <http://cdn.growthbook.io|cdn.growthbook.io> through Cloudfront following your CDN docs, and that's working. But the SDK is still sending events directly to <http://us1.gb-ingest.com|us1.gb-ingest.com>, which is what's causing the CORS issue.
Two questions:
1. What SDK parameter should we use to override the event ingestion endpoint so I can point it to our own proxied domain (e.g. <http://gb-events.123cards.com|gb-events.123cards.com>)?
2. Is there any documentation on proxying the ingestion endpoint, similar to the CDN proxy docs?astonishing-engineer-93454
05/29/2026, 8:59 PMapiHost is for feature/config fetching, not event ingestion (https://docs.growthbook.io/app/managed-warehouse)astonishing-engineer-93454
05/29/2026, 9:13 PMingestorHost on the GrowthBook tracking plugin.
</> TS
import { GrowthBook } from "@growthbook/growthbook";
import {
autoAttributesPlugin,
growthbookTrackingPlugin,
} from "@growthbook/growthbook/plugins";
const gb = new GrowthBook({
apiHost: "<https://cdn-proxy.123cards.com>", // feature payload/CDN proxy
clientKey: "sdk-xxxx",
plugins: [
autoAttributesPlugin(),
growthbookTrackingPlugin({
ingestorHost: "<https://gb-events.123cards.com>",
}),
],
});