mirror of
https://github.com/mempool/mempool.git
synced 2026-08-19 13:18:06 +02:00
Merge pull request #1917 from mempool/wiz/fix-prod-nginx-perma-cache-patterns
[ops] Fix prod nginx perma-cache URL patterns
This commit is contained in:
commit
198c52fd5f
1 changed files with 2 additions and 2 deletions
|
|
@ -4,13 +4,13 @@ location /api/v1/statistics {
|
|||
location /api/v1/mining {
|
||||
try_files /dev/null @mempool-api-v1-warmcache;
|
||||
}
|
||||
location /api/v1/block {
|
||||
location /api/v1/block/ {
|
||||
try_files /dev/null @mempool-api-v1-forevercache;
|
||||
}
|
||||
location /api/v1 {
|
||||
try_files /dev/null @mempool-api-v1-coldcache;
|
||||
}
|
||||
location /api/block {
|
||||
location /api/block/ {
|
||||
rewrite ^/api/(.*) /$1 break;
|
||||
try_files /dev/null @electrs-api-forevercache;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue