Add to the nginx documentation the location datastore block

This commit is contained in:
Caleb James DeLisle 2018-04-13 18:14:01 +02:00
parent 2897a14869
commit 3c2d61ff42
1 changed files with 6 additions and 0 deletions

View File

@ -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;
}