maximize Cloudflare edge caching

This commit is contained in:
2569718930@qq.com
2026-06-10 19:11:58 +08:00
parent 081bf9cc05
commit 1494db8e09
18 changed files with 421 additions and 42 deletions
+124
View File
@@ -0,0 +1,124 @@
# Cloudflare 免费版缓存配置
目标:让 Cloudflare 承担公开页面、公开 API 和静态资源的重复读取,降低 VPS CPU、Next.js worker 和后端 detail-batch 压力,同时避免缓存账户、支付、反馈和实时连接。
代码已通过 `Cache-Control``Cloudflare-CDN-Cache-Control` 声明 TTL。Cloudflare Dashboard 应设置为尊重源站缓存头,不要给所有 `/api/*` 统一启用 Cache Everything。
缓存规则只允许作用于前端域名 `polyweather.top``api.polyweather.top` 是带服务令牌和会员校验的后端源站,必须绕过 Cloudflare 缓存,避免缓存命中绕过后端权限检查。
## 基础设置
- `Caching > Configuration > Browser Cache TTL`Respect Existing Headers
- `Caching > Configuration > Development Mode`Off
- `Caching > Configuration > Always Online`On
- `Caching > Tiered Cache`Smart Tiered Cache,若当前免费套餐控制台提供则开启
- `Speed > Optimization > Content Optimization > Brotli`On
- `Speed > Optimization > Content Optimization > Early Hints`On
- `Network > HTTP/3 (with QUIC)`On
- `Network > WebSockets`On
- 确保 `api.polyweather.top``polyweather.top` 代理状态为 Proxied
## Cache Rules
按以下顺序创建,绕过规则必须放在公开缓存规则之前。免费版规则数量有限,因此使用路径集合合并表达式。
### 1. 绕过后端域名、动态和敏感请求
动作:Bypass cache
表达式:
```text
http.host eq "api.polyweather.top"
or (http.request.method ne "GET" and http.request.method ne "HEAD")
or starts_with(http.request.uri.path, "/api/auth/")
or starts_with(http.request.uri.path, "/api/feedback")
or starts_with(http.request.uri.path, "/api/events")
or starts_with(http.request.uri.path, "/api/internal/")
or starts_with(http.request.uri.path, "/api/ops/")
or starts_with(http.request.uri.path, "/api/payments/")
or starts_with(http.request.uri.path, "/account")
or starts_with(http.request.uri.path, "/auth")
or starts_with(http.request.uri.path, "/ops")
or starts_with(http.request.uri.path, "/terminal")
or http.request.uri.query contains "force_refresh=true"
```
若 Dashboard 支持请求头或 Cookie 条件,再加入:
```text
or any(http.request.headers["authorization"][*] ne "")
or http.cookie contains "sb-"
```
### 2. 缓存静态资源
动作:Eligible for cacheEdge TTL 使用源站 Cache-Control。
表达式:
```text
http.host eq "polyweather.top"
and (
starts_with(http.request.uri.path, "/_next/static/")
or lower(http.request.uri.path.extension) in {
"js" "css" "woff" "woff2" "png" "jpg" "jpeg" "webp" "avif" "svg" "ico"
}
)
```
源站 TTL:一年 immutable。
### 3. 缓存公开页面
动作:Eligible for cacheEdge TTL 使用源站 Cache-Control。
表达式:
```text
http.host eq "polyweather.top"
and (
http.request.uri.path eq "/"
or starts_with(http.request.uri.path, "/docs/")
or starts_with(http.request.uri.path, "/modern/")
or starts_with(http.request.uri.path, "/probabilities/")
or starts_with(http.request.uri.path, "/subscription-help/")
)
```
源站 TTL:10 分钟,过期后允许后台刷新 1 小时。
### 4. 缓存公开数据接口
动作:Eligible for cacheEdge TTL 使用源站 Cache-Control。
表达式:
```text
http.host eq "polyweather.top"
and (
http.request.uri.path eq "/api/cities"
or http.request.uri.path eq "/api/cities/detail-batch"
or starts_with(http.request.uri.path, "/api/city/")
or http.request.uri.path eq "/api/scan/terminal"
or http.request.uri.path eq "/api/system/status"
)
```
接口 TTL
- `/api/cities`5 分钟,过期后可复用 1 小时。
- 城市详情与 detail-batch:60 秒,过期后可复用 5 分钟。
- `/api/scan/terminal`:5 分钟,过期后可复用 15 分钟。
- partial、busy、timeout、stale、force refresh 和错误响应:`no-store`,不得缓存。
## 验证
每次规则变更后连续请求同一 URL,检查响应头:
```powershell
curl.exe -sS -D - -o NUL "https://polyweather.top/api/cities"
curl.exe -sS -D - -o NUL "https://polyweather.top/api/scan/terminal?limit=1"
```
正常命中应看到 `CF-Cache-Status: HIT` 和递增的 `Age`。首次请求通常是 `MISS`;动态或明确 `no-store` 的请求应保持 `DYNAMIC``BYPASS`