Add to the nginx documentation the location datastore block

pull/1/head
Caleb James DeLisle 7 years ago
parent 2897a14869
commit 3c2d61ff42

@ -75,6 +75,12 @@ server {
}
location ^~ /blob/ {
add_header Cache-Control max-age=31536000;
try_files $uri =404;
}
location ^~ /datastore/ {
add_header Cache-Control max-age=0;
try_files $uri =404;
}

Loading…
Cancel
Save