500/642
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache had a value of TCP_MEM_HIT from a23-40-103-215.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-).
Akamai has documentation on how to interpret the X-Cache and X-Cache-Remote headers.
Maximum possible points
100
What is this check, and why should you care
Using a CDN is extremely useful for caching purposes.
Maximum possible points
50
What is this check, and why should you care
The time that it takes for a user's browser to receive the first byte of page content.
The lower the TTFB, the faster your site will be perceived by the end user.
To get maximum points, your TTFB must be less than or equal to 30ms. If your TTFB is more than 1 second then you get no points here.
Maximum possible points
50
What is this check, and why should you care
Using Last-Modified headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since with a value of Sun, 15 Feb 2026 06:09:38 GMT was sent, and an HTTP 304 was responded with.
Maximum possible points
30
What is this check, and why should you care
Having tiered caching can help improve the cache hit ratio of your site because it provides an additional layer of caching in front of your origin.
Maximum possible points
25
What is this check, and why should you care
Caching HTTP 404s is a great way to offload requests from your origin.
To get maximum points, you need to have the ability to cache an HTTP 404 for any amount of time.
This check requested the URL https://www.infrastructure.gov.au/cachingscorebrokenurltest.
Maximum possible points
20
What is this check, and why should you care
The purpose of HTTP compression is to reduce the size of the files sent by a CDN/web server by eliminating redundant information in those files. The smaller the size of the files, the more quickly they can be served over the World Wide Web.
On top of faster delivery, compression also reduces the amount of bandwidth used by the CDN/web server. This is especially important for mobile devices, where the bandwidth is often limited.
The response header Content-Encoding had a value of br.
Akamai has documentation on how to enable Brotli compression.
See the Wikipedia page on HTTP compression for more background.
To get maximum points, you need to use Brotli or Zstandard compression.
Maximum possible points
20
What is this check, and why should you care
Drupal 8+ provides an Internal Page Cache module recommended for small to medium-sized websites.
There is value in using this module, even when you are using Akamai, due to the low cache lifetime of 14 minutes and 59 seconds.
To get maximum points, you must enable the page_cache module, and have a HIT on Drupal's page cache.
See Drupal's documentation on the Internal Page Cache module. Also, Wim Leers wrote a really awesome blog post on the release of this module with important background.
Maximum possible points
20
What is this check, and why should you care
CSS aggregation reduces the number of assets your site needs to download. The filename contains a hash of all the file contents, meaning you can cache these files for an extremely long time with no negative consequences.
Maximum possible points
10
What is this check, and why should you care
Javascript aggregation reduces the number of assets your site needs to download. The filename contains a hash of all the file contents, meaning you can cache these files for an extremely long time with no negative consequences.
Maximum possible points
10
What is this check, and why should you care
Drupal 9.5+ introduces a new debug setting to make it easier to debug render caching. This setting will add cache debugging output for each rendered element.
The main issue with this is that this slows down your page loads (on top increasing your page weight).
To get maximum points, you must disable the render cache debug.
Maximum possible points
10
What is this check, and why should you care
Drupal 7+ provides a Statistics module to which records content view statistics in Drupal's database.
The main issue with this module is that it sends an un-cacheable HTTP POST request to your site to record a 'content view' statistic. This does not scale well as you Drupal site gets more traffic.
To get maximum points, you must disable the statistics module.
Maximum possible points
10
What is this check, and why should you care
Drupal 8+ uses Twig for templating, and the Twig template engine offers a debug tool to which emits out a list of template filenames in the HTML source.
The main issue with this is that you often also have other Twig related performance issues as well, e.g. automatic reloading.
To get maximum points, you must disable Twig debug.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
FBCLID is one such parameter that can be stripped by your caching server. This query parameter only really serves a purpose for Javascript to read, and Javascript can still read it from the browser URL.
This check requested the URL https://www.infrastructure.gov.au/?fbclid=1771165334.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
GCLID and GCLSRC are two such parameters that can be stripped by your caching server. These query parameters only really serve a purpose for Javascript to read, and Javascript can still read it from the browser URL.
This check requested the URL https://www.infrastructure.gov.au/?gclsrc=1771165334&gclid=1771165334.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
TTCLID is one such parameter that can be stripped by your caching server. This query parameter only really serves a purpose for Javascript to read, and Javascript can still read it from the browser URL.
This check requested the URL https://www.infrastructure.gov.au/?ttclid=1771165334.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
UTM is a collection of parameters that can be stripped by your caching server. These query parameters only really serve a purpose for Javascript to read, and Javascript can still read them from the browser URL.
This check requested the URL https://www.infrastructure.gov.au/?utm_source=1771165334&utm_medium=1771165334&utm_campaign=1771165334&utm_id=1771165334.
Maximum possible points
10
What is this check, and why should you care
There is a SPAM protection module in Drupal called Honeypot.
The honeypot module has a feature that adds a time based hidden form field to forms to protect against bots filling them in too quickly. This is a nice feature, however it happens to disable caching for the entire page. This is terrible for high traffic sites.
It is recommended to disable this time based feature, and only use the core honeypot feature of a hidden input field.
Maximum possible points
5
What is this check, and why should you care
The language_cookie module breaks proxy caching because it makes Drupal’s response vary by a cookie, which most HTTP caches don’t handle efficiently.
The module also has a side effect of breaking Drupal’s page_cache system as well - see the issue #3512070.
To get maximum points, you must disable the language_cookie module.
Maximum possible points
5
What is this check, and why should you care
There are 2 filesystems in Drupal - public files and private files.
Private files force Drupal to bootstrap in order to serve the file, and access control is checked every single time. This is useful for sensitive files, but a hindrance when your site is under high load.
It is recommended to use Drupal's public file system for static, non-sensitive files, and reserve the use of private files for dynamic, or sensitive files.
Maximum possible points
5
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
To get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
The current cache lifetime is 899 seconds (14 minutes and 59 seconds).
Maximum possible points
100
What is this check, and why should you care
Using ETag identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match with a value of W/"1771135778" was sent, but an HTTP 304 was not responded with. So you have Etags, but they are not doing anything.
Akamai has documentation on how to enable Etag support (requires login).
See the Wikipedia page on ETag for more background.
To get maximum points, you need to have ETag identifiers and an HTTP 304 response must be received when using a valid If-None-Match request header.
Maximum possible points
30
What is this check, and why should you care
Akamai has very strict controls around cache tag lengths, counts and characters. If you exceed or break these controls then you risk your content not being invalidated when you issue a cache tag purge.
The response header X-Akamai-Cache-Tag-Error had a value of TAGSCNT 6obgt.
Too many cache tags. The current number of cache tags found was 1,024.
See the Akamai technical documentation on how to interpret this header.
Maximum possible points
10
Performed on the asset: https://www.infrastructure.gov.au/sites/default/files/styles/banner_image/public/images/banner-connecting.jpg?h=6e6be836&itok=hLkyfcZb
See the HTTP headers for this image file.
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache had a value of TCP_HIT from a23-40-103-215.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-).
Akamai has documentation on how to interpret the X-Cache and X-Cache-Remote headers.
Maximum possible points
10
What is this check, and why should you care
Using ETag identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match with a value of "662856b0-204b9" was sent, and an HTTP 304 was responded with.
Akamai has documentation on how to enable Etag support (requires login).
See the Wikipedia page on ETag for more background.
To get maximum points, you need to have ETag identifiers and an HTTP 304 response must be received when using a valid If-None-Match request header.
Maximum possible points
3
What is this check, and why should you care
Using Last-Modified headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since with a value of Wed, 24 Apr 2024 00:47:44 GMT was sent, and an HTTP 304 was responded with.
Maximum possible points
3
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
To get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
The current cache lifetime is 2137112 seconds (3 weeks and 3 days).
Maximum possible points
10
Performed on the asset: https://www.infrastructure.gov.au/sites/default/files/css/css_AOPg0kMAoRxFLpWsIJ0VEd3Rb5RgkcOo00t86yFTwx8.css?delta=0&language=en&theme=ditrdc&include=eJx9jUsOAyEMQy_EwJFGCUSAGj4ioe3cvqNKFRKLbrywn21sTUUH9BNhjNxc5IbAh-jFuUaDW37KRE1UyK3Eh_qH2wZ9q0pvncAujNmB7XKOm3iICVlH8Huxw4B4HyT5FZdjZ-0TOUuiYOQSpeIQhMwz00vcV21pYTJ9ALkIX_g
See the HTTP headers for this CSS file.
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache had a value of TCP_MEM_HIT from a23-40-103-215.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-).
Akamai has documentation on how to interpret the X-Cache and X-Cache-Remote headers.
Maximum possible points
10
What is this check, and why should you care
Using Last-Modified headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since with a value of Fri, 16 Jan 2026 17:04:05 GMT was sent, and an HTTP 304 was responded with.
Maximum possible points
3
What is this check, and why should you care
The purpose of HTTP compression is to reduce the size of the files sent by a CDN/web server by eliminating redundant information in those files. The smaller the size of the files, the more quickly they can be served over the World Wide Web.
On top of faster delivery, compression also reduces the amount of bandwidth used by the CDN/web server. This is especially important for mobile devices, where the bandwidth is often limited.
The response header Content-Encoding had a value of br.
Akamai has documentation on how to enable Brotli compression.
See the Wikipedia page on HTTP compression for more background.
To get maximum points, you need to use Brotli or Zstandard compression.
Maximum possible points
2
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
To get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
The current cache lifetime is 1436111 seconds (2 weeks and 2 days).
Maximum possible points
10
What is this check, and why should you care
Using ETag identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match with a value of W/"696a6f85-25aa" was sent, but an HTTP 304 was not responded with. So you have Etags, but they are not doing anything.
Akamai has documentation on how to enable Etag support (requires login).
See the Wikipedia page on ETag for more background.
To get maximum points, you need to have ETag identifiers and an HTTP 304 response must be received when using a valid If-None-Match request header.
Maximum possible points
3
Performed on the asset: https://www.infrastructure.gov.au/sites/default/files/google_analytics/gtag.js?tahkzq
See the HTTP headers for this Javascript file.
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache had a value of TCP_HIT from a23-40-103-215.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-).
Akamai has documentation on how to interpret the X-Cache and X-Cache-Remote headers.
Maximum possible points
10
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
To get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
The current cache lifetime is 2599128 seconds (1 month and 2 days).
Maximum possible points
10
What is this check, and why should you care
Using Last-Modified headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since with a value of Sun, 15 Feb 2026 06:07:09 GMT was sent, and an HTTP 304 was responded with.
Maximum possible points
3
What is this check, and why should you care
The purpose of HTTP compression is to reduce the size of the files sent by a CDN/web server by eliminating redundant information in those files. The smaller the size of the files, the more quickly they can be served over the World Wide Web.
On top of faster delivery, compression also reduces the amount of bandwidth used by the CDN/web server. This is especially important for mobile devices, where the bandwidth is often limited.
The response header Content-Encoding had a value of br.
Akamai has documentation on how to enable Brotli compression.
See the Wikipedia page on HTTP compression for more background.
To get maximum points, you need to use Brotli or Zstandard compression.
Maximum possible points
2
What is this check, and why should you care
Using ETag identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match with a value of W/"6991628d-6e71c" was sent, but an HTTP 304 was not responded with. So you have Etags, but they are not doing anything.
Akamai has documentation on how to enable Etag support (requires login).
See the Wikipedia page on ETag for more background.
To get maximum points, you need to have ETag identifiers and an HTTP 304 response must be received when using a valid If-None-Match request header.
Maximum possible points
3
| Name | Value |
|---|---|
| Status Code | HTTP 200 |
| Alt-Svc | h3=":443"; ma=93600 |
| Cache-Control | public, max-age=899 |
| Connection | keep-alive |
| Content-Encoding | br |
| Content-Language | en |
| Content-Length | 45381 |
| Content-Type | text/html; charset=UTF-8 |
| Date | Sun, 15 Feb 2026 14:22:13 GMT |
| ETag | W/"1771135778" |
| Edge-Cache-Tag | 08f9a 08pb2 0a89k 0lio7 0o7f9 10hbi 10igs 10in2 10vhq 111ft 115ck 11f3d 11gq8 11l1e 11r3h 11s6l 11vpb 124rt 12kde 12pjh 12u7l 12uaf 1311b 135ts 13fpc 13jiv 14aup 14fmk 14i9m 14j1b 14js8 14tv4 15m91 16503 165n7 16k0b 16kn0 16n2p 16nen 16qgs 16u1s 17qkj 17vfa 18970 189cs 18gh7 18okk 18s6p 18sda 18tbu 18tem 191fq 19411 19anl 19n15 1a012 1a09d 1a6dj 1aehd 1ag7k 1akf2 1apf9 1as9f 1b3ca 1b6ht 1be00 1bihq 1bilt 1bjfd 1bkga 1bkt0 1bmlu 1brgd 1ca2k 1cn4j 1d00v 1d4ff 1d7fv 1deu1 1dm36 1e1tr 1e5tf 1epm5 1eqqf 1f35f 1f3u6 1f595 1ffcb 1fkdc 1fkp0 1gcft 1gkkj 1gqaj 1h1j9 1h4t1 1h4uq 1hgdr 1hklm 1hsg3 1hunl 1i13f 1i45b 1i4uo 1ibsk 1iid3 1iont 1ir97 1j7qj 1jdio 1jkpr 1k2ij 1kbfl 1kqme 1l7eq 1l8do 1lcqk 1lepi 1ll9h 1m3h3 1mfu1 1mgav 1mk0q 1mpt4 1mq9h 1n3si 1n8gu 1npbe 1o499 1o7mv 1o8m8 1oo5l 1oojg 1opku 1p81n 1pbkf 1q56b 1q6lc 1qi7n 1qigq 1qjk8 1r3hf 1revf 1s0a4 1s4qo 1t00a 1t9bt 1td1c 1tev7 1u7pl 1ulcm 1v6vt 1vfaa 1vktq 1vmhn 1vpdk 1vvkh 2001j 2002c 20fbf 20np1 20vq9 2178i 21918 21cig 21uol 222r5 223q3 2240e 23d9o 23prv 2534n 25j90 25osa 25qh0 25tce 261sd 26473 2658c 26hc0 26jo9 26lel 26md0 26q7s 26u8u 2761u 27ci0 27dlh 27fu9 27hmv 27nlg 27q7s 286et 2879b 28gq6 298k9 29d34 29p73 29p7a 2a9hb 2ahm5 2am79 2ampr 2apa4 2asgg 2b6ue 2bc29 2bpbi 2bpsh 2bq12 2c0ni 2c4g1 2d1vd 2d7r4 2de9c 2dlj3 2e07o 2e1qk 2e8rf 2f0ij 2f35k 2f4lt 2fc9h 2futc 2g1va 2g39r 2g5fh 2gitn 2gkb6 2goj3 2h0sm 2i6ao 2ib5g 2ic7o 2ih4j 2ijs6 2inmb 2j4lb 2k7on 2kg4u 2kgt9 2kh2s 2kqqv 2l9n8 2lfs7 2liim 2me98 2mgnl 2movt 2n2pq 2n5n1 2nciu 2nhbq 2nn89 2o3vq 2o7uh 2o91v 2o96f 2oid2 2osgi 2p0us 2p3gc 2pm08 2pri4 2q2hr 2q5qd 2qeni 2qp95 2qpjd 2r062 2rb0i 2rjsr 2rocp 2rvf0 2rvrc 2ss3p 2t4co 2tb19 2tg2v 2tnaf 2u6ev 2ukvp 2umtl 2urhk 2v2c8 2vd5f 304b2 30mao 30mrr 30qlr 30thk 312ie 316ne 31idv 31tcr 31u1j 328ee 32edm 32rbr 32sni 334kd 337r4 340gp 342gt 34aov 34cic 34fa9 34m4c 34rer 34srp 3573b 358t0 360ev 3765e 376ud 37h9c 38k2l 399po 39d3u 39m1j 39vlj 3ac3g 3al7p 3aphe 3arhq 3arp1 3as48 3asla 3b9j8 3bid3 3bnil 3br98 3cd2n 3cdno 3ckaa 3coj9 3csr9 3d16i 3dall 3db9n 3dij8 3e27m 3eebu 3eh82 3ejrd 3em38 3eu13 3f0eh 3favu 3fbah 3fg20 3fl4o 3g3rv 3g4m2 3h5aq 3hmof 3hp88 3hqod 3hv6h 3i2hb 3i6hq 3ifm0 3igtl 3ih1t 3iigq 3j5oj 3je8c 3jhnk 3jts3 3k6i7 3k8n2 3k8vt 3khau 3kofm 3l33t 3ljnr 3lkh3 3ltlb 3lvd0 3m910 3m9i5 3ma39 3mgue 3n1li 3n97m 3necm 3o2rv 3o4r9 3o8e1 3okjg 3onog 3ori8 3pnpl 3ptgo 3q4k5 3q4qt 3qfp4 3r40s 3r6u5 3reh8 3rfj1 3rns0 3s3fa 3sf7e 3skou 3t1p8 3t5to 3tfau 3tfti 3ti3o 3tism 3tjin 3u3c8 3u3n0 3u8p7 3uqop 3ust0 3v3bj 3v3nh 3v4ju 3v995 3vi6u 3vkq7 40sem 40v9p 414d1 417vh 41ak0 41h7f 41l7e 41n5k 41o6p 41vui 422n1 42a43 42eli 431ir 431je 43a2u 43bk5 43cfq 43le0 43qas 44c0m 44chg 44d4t 44dg5 4561m 456t7 45qd2 45vhr 464bb 46ht1 46jkb 46pu7 475vg 47dns 47fok 47j7u 47qhl 47t0h 4856b 48ocu 48q5k 48sbu 490br 4954q 4996i 49j7a 4ac7t 4aiqm 4anqe 4b4hd 4b4p1 4bgqc 4bjs5 4c37d 4c7ge 4cepe 4cqac 4cr9a 4d4a4 4dilb 4e66p 4e8dc 4efia 4ehuk 4ek1n 4eop7 4f0hm 4f3c5 4gl5e 4gsg4 4hgsp 4hi29 4hpt0 4hu6e 4i3s6 4ia51 4iglm 4jucr 4k9o8 4kerg 4kjqj 4klok 4kt5a 4l9ct 4lgdl 4lhq3 4lip5 4ltqe 4m5hq 4mgqp 4mh84 4mnel 4mnev 4nbb2 4neg5 4nq0k 4o3g7 4oqo8 4p5m6 4pe9n 4qcnm 4qv9h 4rfdq 4rfke 4rot2 4rq96 4rsrp 4rvh4 4slcr 4t8vi 4tjtl 4tmha 4tn7b 4tojj 4ttbk 4u6tv 4um2b 4v43g 4v7ql 4vdor 4vk3q 4vpsh 509ia 50bl4 50i02 50qgv 50v75 517c8 51bh0 51n8n 51s4m 527v3 5289l 528gq 52fp0 52nm0 52qhf 52sdo 52t6p 539jj 53ah6 53fci 53gms 53kt0 5454b 5468u 54b6t 54g02 54iuq 54vun 55gdk 55lec 55pla 55uqu 56f6b 56pg3 56vnt 57119 57fc3 57p77 57pu4 581l9 582n1 58cq0 58lsg 58p3q 58qhf 58uh0 59pnu 59st7 5a04c 5a9hj 5aefh 5ajfs 5apeo 5arck 5bf1c 5bk40 5bmsq 5boq4 5bqr8 5btmq 5cbai 5d2sh 5d8t6 5d9jv 5dd6p 5dhca 5djut 5dr3d 5e3si 5e748 5ed1s 5emme 5eqjj 5erco 5ertf 5ev5a 5fe43 5fif5 5fnvq 5fprk 5fvgn 5g075 5g1e1 5gu6s 5guf3 5h85n 5hbcu 5hid6 5hl8c 5hmrd 5hpij 5i30j 5ip1n 5iqvp 5jnjt 5k0bn 5kof5 5kpni 5kqig 5l48a 5l84b 5lbar 5lcb1 5mltp 5mnv2 5mob1 5moil 5nm9r 5nrmm 5oc53 5p8uk 5p9p3 5padp 5pcq3 5pt78 5q7hj 5r2ko 5rt5b 5s2nb 5se29 5sfja 5th5g 5ts09 5tttb 5ub50 5uob9 5uu55 5ve6a 5vk6p 5vs8k 5vvl3 60dcq 60gba 60luf 60vqg 61b6k 61c15 61i29 61p8e 61v5i 6211h 62j72 62jp3 63k4c 64b0k 65lc5 65u2g 66gs7 66h1i 66jrr 66r7g 6768k 696dk 698vr 69i0m 69occ 6acbb 6aq34 6au5k 6b4vg 6bkj1 6bm9f 6cksk 6d6hd 6d7qt 6dahp 6deet 6dije 6djsl 6ee67 6etb9 6f6ft 6f955 6fae8 6ffic 6fi66 6fldn 6flv7 6fsfn 6fu3u 6g3oj 6gaus 6gbv7 6gdbt 6gp9t 6gpfh 6gsec 6gtnt 6h39g 6h77u 6h86o 6i641 6if9b 6ilrv 6iovp 6j2rq 6j4at 6jag0 6jeaj 6jqef 6kk4a 6kkib 6l4t3 6ld5m 6lfvu 6lhcv 6lhpi 6ljpd 6lt85 6lth3 6mbvc 6meci 6muog 6n9qf 6ne4m 6nlen 6o30h 6pa37 6pg8b 6ph0j 6plpb 6q5dn 6qv14 6r20l 6rljv 6rrdg 6rvpm 6s125 6sa1f 6sb61 6sh64 6sn9k 6sp46 6srf4 6t3q7 6tgbn 6tl39 6tqee 6tqh7 6u4gs 6u4o8 6u6t1 6ud55 6uqn9 6v38e 6vaoh 6vdf2 6vfll 6vr83 70f6n 70hfn 70hqu 70jah 70qg0 70v01 71gcc 71m4r 720is 724od 727bf 72f5c 72g89 73jnm 73v9k 73vkl 73vmk 74caq 74let 74o6d 74s5u 74vjf 7529l 7567k 75vvc 769pf 76su3 771nj 776nr 778f1 77cfo 77gf4 77h5k 77mir 77ot8 781sh 781ve 785ks 78gmr 78i2n 78qh6 797ev 79ir8 79mh0 7am46 7aqlq 7aqro 7b1pv 7b5k7 7b5qc 7b60d 7bbuf 7bje6 7bjpt 7c9gs 7d6eb 7dnla 7dtkm 7e288 7ei5s 7ei9p 7f6fk 7fjg6 7frn8 7fso1 7g2a2 7gpm3 7h09p 7h2it 7hafg 7hff6 7hfqr 7hj6f 7hlep 7hmsq 7hncp 7ht70 7i4t5 7i9kk 7ieut 7ij01 7ip2t 7iuim 7j2en 7k412 7kqdk 7l5c9 7lc73 7lo28 7m270 7mdcp 7mq4k 7n9bq 7naal 7nd33 7ne8s 7neak 7nffc 7njst 7ntot 7nujn 7o36d 7o3lf 7o3ot 7o65b 7obot 7og6p 7oqof 7pdmk 7pnsr 7pqe2 7psh1 7qc31 7qqod 7qtur 7r4ev 7rc5e 7roa5 7rq20 7s7sk 7s9mv 7sf1u 7sfg4 7snci 7t2io 7t5g3 7tagm 7talp 7tb8m 7tc3m 7thnq 7ubga 7uoal 7v6n4 7vqri 7vro6 7vt4t 7vvtf 8520n 8f0le 8kc9v 98ven 9ir87 abq3c ac143 afgk9 ao269 aot1v avgvp b7hfd c74pa cke5v d1fp8 d6fea da6h2 e8atq em4ne epfdp euhdt eunu2 fiea1 fkg5u fn3gi fn4hg fp4p1 fqm6n g2mme g5t65 gbjp0 gf7aa gj4pu gpu7j gvq5v h61qn h6lon h9ghp hhfm9 hjpru i8uci i9c2q ibqr6 iregt iuvsu j1spe j60gv ja1vg jbfdf jisml jqede jridd jsm61 kjfak lj3m2 lnrd5 nc55c njt9l o33rs p1qfb p9p9j pjbib q06bf qb9k3 qcaa4 qtb94 r35ts r8s78 rtm8q s6vc1 s7j2i she1k sl6ei snvfk t396p ta8d9 tapv8 tks32 tp1sg u1om0 uqm7f v4fu1 v4u6c v5ou5 v8vvd vajrn vglpg vh9ct vqd9a vrq9l vskhh vueip vvocs |
| Expires | Sun, 15 Feb 2026 14:37:12 GMT |
| Last-Modified | Sun, 15 Feb 2026 06:09:38 GMT |
| X-Akamai-Cache-Tag-Error | TAGSCNT 6obgt |
| X-Cache | TCP_MEM_HIT from a23-40-103-215.deploy.akamaitechnologies.com (AkamaiGHost/22.4.2-1edda81bef43cb1c10d4898543aeed8e) (-) |
| X-Cache-Key | S/L/73021/1122222/1d/www.infrastructure.gov.au/ |
| X-Cache-Key-Extended-Internal-Use-Only | S/L/73021/1122222/1d/www.infrastructure.gov.au/ vcd=6147 |
| X-Check-Cacheable | YES |
| X-Drupal-Cache | HIT |
| X-Drupal-Dynamic-Cache | MISS |
| X-Lagoon | amazeeio-govcms5>sigsci-ingress-nginx>infrastructure-master:nginx> |
You can use the following cURL command:
curl -sLIXGET -H 'Pragma: akamai-x-cache-on, akamai-x-cache-remote-on, akamai-x-check-cacheable, akamai-x-get-cache-key, akamai-x-get-cache-tags' -H 'Accept-Encoding: br, zstd, gzip, deflate' 'https://www.infrastructure.gov.au/' | sort