Skip Navigation
Expand
The cache control max-age on RightNow.Client.js
Answer ID 9671   |   Last Review Date 01/27/2019

How can I change the cache control max-age on RightNow.Client.js?

Environment

Oracle Cloud Service - all releases

Resolution

Cache control max-age values for JS resources are not set via Oracle Cloud Service configuration settings or Customer Portal code.

This is hardcoded somewhere in the Apache HTTP server configurations.

For instance, in the httpd.conf or other configuration that is expected to set max-age of all resources under euf directory as 15 minutes (900):

<IfModule mod_expires.c>
    <LocationMatch ^/euf>
      ExpiresActive On
      ExpiresDefault "access plus 15 minutes"
    </LocationMatch>
</IfModule>. "