Enable nginx warm cache for mining pools API data

This commit is contained in:
wiz
2022-01-28 13:32:03 +00:00
parent cbac1d0dad
commit a8324090d9
2 changed files with 23 additions and 10 deletions

View File

@@ -1,6 +1,9 @@
location /api/v1/statistics {
try_files /dev/null @mempool-api-v1-warmcache;
}
location /api/v1/mining/pools {
try_files /dev/null @mempool-api-v1-warmcache;
}
location /api/v1 {
try_files /dev/null @mempool-api-v1-coldcache;
}