The Purge feature allows you to remove cached content from the Kontenum CDN so that the next request will fetch fresh content directly from your origin.
Purge is useful when you:
When a URL is purged:
Purge operations are safe and do not affect your origin data.
You can manually submit a purge request through the Kontenum Console. This is the fastest way to purge individual URLs during development or small updates.
For automation and CI/CD workflows, purge can also be triggered using the Kontenum API.
Using the API allows you to:
The URL field specifies which cached content should be removed.
Example:
https://example.com/path/to/file.css
Kontenum automatically applies wildcard purging based on the URL you provide.
Example:
https://mycdn.example.com/assets/
This will purge:
https://mycdn.example.com/assets/*
All cached files under the /assets/ path will be removed.
⚠️ Be careful when purging high-level paths, as this may invalidate a large number of cached objects.
The Origin Header field allows you to purge cached content selectively based on the origin domain used when fetching assets.
This value is sent as the HTTP Origin header when the CDN performs cache validation.
Example:
www.kontenum.com
Use this field when:
If left empty, the purge applies to all origins associated with the URL.
| Scenario | Recommended Action |
|---|---|
| Update a single file | Purge exact file URL |
| Update a folder | Purge folder path (wildcard) |
| Multi-origin setup | Use Origin Header |
| CI/CD deployment | Use Purge API |
If you need help with advanced purge scenarios or API usage, refer to the API documentation or contact support team.