advanced-pagecache.yaml 849 B

12345678910111213
  1. enabled: true # set to false to disable this plugin completely
  2. disabled_with_params: true # disabled if there are params set on this URI (eg. /color:blue)
  3. disabled_with_query: true # disabled if there are query options set on this URI (eg. ?color=blue)
  4. disabled_on_login: true # disabled if a user is logged in on the frontend of the site
  5. per_user_caching: false # enable per-user caching of pages (if not disabled_on_login)
  6. disabled_extensions: [rss,xml,json] # disabled for these extensions
  7. whitelist: # set to array of enabled page paths to enable only when in whitelist
  8. - /cache-this-page
  9. blacklist: # set to array and provide list of page paths to disable plugin for
  10. - /error
  11. - /login
  12. - /random
  13. - /dont-cache-this-page