fix(attic): fix nginx proxy cache bypass and add cache lock

Replace broken proxy_cache_bypass (was bypassing every request) with
proxy_cache_lock to coalesce concurrent requests for the same path.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Harald Hoyer 2026-03-25 13:38:32 +01:00
parent 13a386fe98
commit c986fa7808

View file

@ -76,7 +76,7 @@
proxy_cache_valid 200 30d; proxy_cache_valid 200 30d;
proxy_cache_use_stale error timeout updating; proxy_cache_use_stale error timeout updating;
proxy_cache_methods GET HEAD; proxy_cache_methods GET HEAD;
proxy_cache_bypass $request_method; proxy_cache_lock on;
''; '';
}; };
}; };