Browse Source

Add to the nginx documentation the location datastore block

master
Caleb James DeLisle 2 years ago
parent
commit
3c2d61ff42
1 changed files with 6 additions and 0 deletions
  1. 6
      docs/example.nginx.conf

6
docs/example.nginx.conf

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