Add to the nginx documentation the location datastore block
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…
Reference in New Issue