mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(web): ♻️ tidy Cache-Control headers
This commit is contained in:
parent
fed71b95ba
commit
07022cf176
1 changed files with 8 additions and 8 deletions
|
|
@ -3,49 +3,49 @@
|
|||
{
|
||||
"route": "/static/*",
|
||||
"headers": {
|
||||
"cache-control": "public, max-age=31536000, immutable"
|
||||
"Cache-Control": "public, max-age=31536000, immutable"
|
||||
}
|
||||
},
|
||||
{
|
||||
"route": "/favicon.ico",
|
||||
"headers": {
|
||||
"cache-control": "public, max-age=86400"
|
||||
"Cache-Control": "public, max-age=86400"
|
||||
}
|
||||
},
|
||||
{
|
||||
"route": "/logo_filterlists.png",
|
||||
"headers": {
|
||||
"cache-control": "public, max-age=31536000, immutable"
|
||||
"Cache-Control": "public, max-age=31536000, immutable"
|
||||
}
|
||||
},
|
||||
{
|
||||
"route": "/icon_filterlists.png",
|
||||
"headers": {
|
||||
"cache-control": "public, max-age=31536000, immutable"
|
||||
"Cache-Control": "public, max-age=31536000, immutable"
|
||||
}
|
||||
},
|
||||
{
|
||||
"route": "/manifest.json",
|
||||
"headers": {
|
||||
"cache-control": "public, max-age=86400"
|
||||
"Cache-Control": "public, max-age=86400"
|
||||
}
|
||||
},
|
||||
{
|
||||
"route": "/robots.txt",
|
||||
"headers": {
|
||||
"cache-control": "public, max-age=86400"
|
||||
"Cache-Control": "public, max-age=86400"
|
||||
}
|
||||
},
|
||||
{
|
||||
"route": "/tpl-redirect.js",
|
||||
"headers": {
|
||||
"cache-control": "public, max-age=86400"
|
||||
"Cache-Control": "public, max-age=86400"
|
||||
}
|
||||
},
|
||||
{
|
||||
"route": "/tpl.html",
|
||||
"headers": {
|
||||
"cache-control": "public, max-age=86400"
|
||||
"Cache-Control": "public, max-age=86400"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue