We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b60c2 commit c213e62Copy full SHA for c213e62
src/wp-admin/includes/class-wp-site-health.php
@@ -3412,6 +3412,16 @@ public function get_page_cache_headers() {
3412
},
3413
'x-srcache-store-status' => $cache_hit_callback,
3414
'x-srcache-fetch-status' => $cache_hit_callback,
3415
+
3416
+ // Generic caching proxies (Nginx, Varnish, etc.)
3417
+ 'x-cache' => $cache_hit_callback,
3418
+ 'x-cache-status' => $cache_hit_callback,
3419
3420
+ // Cloudflare
3421
+ 'cf-cache-status' => $cache_hit_callback,
3422
3423
+ // Apache mod_cache
3424
+ 'x-cache-detail' => $cache_hit_callback,
3425
);
3426
3427
/**
0 commit comments