ID Cache location fix pt2

This commit is contained in:
x3 2024-02-28 13:44:09 +01:00
parent a1bc2cdbcf
commit d16f1b1cf3
Signed by: x3
GPG Key ID: 7E9961E8AD0E240E
1 changed files with 3 additions and 2 deletions

View File

@ -36,9 +36,10 @@ server {
}
```
Caching based only on file id can be enabled with this example configuration
(Optional) Caching based only on file id can be enabled with this example configuration
```cfg
location ~ ^/-([a-zA-Z0-9]+) {
# Will match '/-{id}' '/-{id}/' '/-{id}/name' but not '/-{id}/name/other'
location ~ ^/-([a-zA-Z0-9]+)(?:/?$|/[^\/]+$)
# Other caching options are omitted here...
proxy_cache_revalidate on;
proxy_cache_key "$host$1";