Don't use expire headers in doc examples

This commit is contained in:
Andy Dawson 2017-05-06 17:43:13 +02:00
parent 1cc4b14e51
commit 351e70671e
1 changed files with 2 additions and 4 deletions

View File

@ -31,7 +31,7 @@ statemtents, directives are defined like so:
# Make sure js files are served with a long expire
location ~* \.js$ {
add_header "section" "long expire"; # for illustration only
expires 1y;
add_header Cache-Control "max-age=31536000";
}
# Oh, and kill etags for js files
@ -54,7 +54,6 @@ Only ONE of these location blocks will be used:
Last-Modified: Tue, 29 Oct 2013 15:17:17 GMT
Connection: keep-alive
ETag: "526fd17d-1"
Expires: Fri, 23 Oct 2015 09:58:47 GMT
Cache-Control: max-age=31536000
section: long expire
Accept-Ranges: bytes
@ -65,7 +64,7 @@ location block:
location ~* \.js$ {
# Make sure js files are served with a long expire
add_header "section" "long expire"; # for illustration only
expires 1y;
add_header Cache-Control "max-age=31536000";
add_header "section" "no etags"; # for illustration only
etag off;
}
@ -80,7 +79,6 @@ Which would then yield:
Content-Length: 1
Last-Modified: Tue, 29 Oct 2013 15:17:17 GMT
Connection: keep-alive
Expires: Fri, 23 Oct 2015 10:00:22 GMT
Cache-Control: max-age=31536000
section: long expire
section: no etags