API
The Gcore Customer Portal is being updated. Screenshots may not show the current version.
CDN
CDN
BillingCDN resources overviewOrigin groupPurgePrefetchReports
API
Chosen image
Home/CDN/Getting Started/Integration

About Gcore CDN integration with CMS and other platforms

When using a CDN, you need to replace the domain of your application in the content links with the custom domain of the created CDN resource. If you don't use a CMS or other off-the-shelf solutions (e.g. AWS S3), this can be done using a script. Contact your developer or consult with Gcore support via email support@gcore.com.

If you use a CMS, cloud platforms, etc., you can use plugins or dedicated functionality to replace domain in links.

Here is a list of CMS and cloud platforms that can be integrated with Gcore CDN:

Integration guides are in the subsection.

Was this article helpful?

Not a Gcore user yet?

Learn more about our next-gen CDN

Go to the product page
// // Initialize a variable to undefined initially. // var growthBook = undefined; // (function() { // try { // var script = document.createElement('script'); // script.src = "https://cdn.jsdelivr.net/npm/@growthbook/growthbook/dist/bundles/auto.min.js"; // script.setAttribute("data-api-host", "https://cdn.growthbook.io"); // script.setAttribute("data-client-key", "sdk-truekA5wvhMYaqsu"); // document.head.appendChild(script); // script.onload = function() { // console.log("GrowthBook script loaded successfully."); // growthBook = window.GrowthBook; // Assuming GrowthBook attaches itself to window // }; // script.onerror = function() { // console.error("Failed to load the GrowthBook script."); // growthBook = undefined; // Explicitly set to undefined on error // }; // } catch (error) { // console.error("An error occurred while setting up the GrowthBook script:", error); // growthBook = undefined; // } // })(); // // Optional: Push to dataLayer if needed // window.dataLayer = window.dataLayer || []; // window.dataLayer.push({ // 'event': 'scriptLoadStatus', // 'growthBookStatus': growthBook ? "Loaded" : "Failed" // });