Search This Blog

Saturday 29 August 2020

To prevent CloudFront from caching certain files

Resolution

To prevent CloudFront from caching certain files, use one of the following configurations:

Configuration on the origin

Note: Be sure to update your CloudFront distribution's cache behavior to set Object Caching as Use Origin Cache Headers.

On your custom origin web server application, add Cache-Control no-cacheno-store, or private directives to the objects that you don't want CloudFront to cache. Or, add Expires directives to the objects that you don't want CloudFront to cache.

If you're using Amazon Simple Storage Service (Amazon S3) as the origin, you can add certain Cache-Control headers using object metadata.

Configuration on the distribution

  1. Open the CloudFront console.
  2. From your list of CloudFront distributions, choose the distribution that you want to modify.
  3. Choose the Behaviors tab.
  4. If you already have a cache behavior for the objects that you don't want CloudFront to cache, select the cache behavior and choose Edit. To create a new cache behavior, choose Create Behavior.
  5. In the cache behavior's settings, enter the following to prevent caching:

    For Object Caching, select Customize.

    For Minimum TTL, enter 0.

    For Maximum TTL, enter 0.

  6. Choose Create to save the changes that you made.

Note: If you aren't using an Amazon S3 bucket as your origin, you can set a specific cache behavior to forward all headers to the origin. To do this, update the cache behavior to set Cache Based on Selected Request Headers to All.

No comments:

Post a Comment