Complete the code to set Cache-Control header to no-cache.
add_header Cache-Control "[1]";
The no-cache directive tells browsers to revalidate with the server before using cached content.
Complete the code to set Cache-Control header to cache content for 1 hour.
add_header Cache-Control "[1]";
The max-age=3600 directive tells browsers to cache content for 3600 seconds (1 hour).
Fix the error in the Cache-Control header to make it public and cache for 10 minutes.
add_header Cache-Control "[1]";
The correct directive is public, max-age=600 to allow caching by any cache for 10 minutes.
Fill both blanks to set Cache-Control header to no-store and no-transform.
add_header Cache-Control "[1], [2]";
no-store prevents storing cache, and no-transform prevents proxies from modifying content.
Fill all three blanks to set Cache-Control header to private, max-age 300.
add_header Cache-Control "[1], [2]=[3]";
The header private, max-age=300 caches content privately for 5 minutes (300 seconds).