feat(k3s): add CDN fallback ingress redirect

这个提交包含在:
2026-08-25 18:18:47 +08:00 未验证
父节点 963d47cd0b
当前提交 317f271bf5
+45
查看文件
@@ -47,6 +47,51 @@ spec:
port:
number: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: cdn-fallback
namespace: infra-net
annotations:
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/enable-cors: "true"
nginx.ingress.kubernetes.io/cors-allow-origin: "https://dev.cm, https://*.dev.cm, https://fillcode.cm, https://*.fillcode.cm"
nginx.ingress.kubernetes.io/cors-allow-credentials: "true"
nginx.ingress.kubernetes.io/configuration-snippet: |
set_by_lua_block $cdn_redirect_prefix {
if ngx.var.request_method ~= "GET" and ngx.var.request_method ~= "HEAD" then return "" end
local source = ngx.var.http_origin
if not source or source == "" then source = ngx.var.http_referer end
local host = source and source:match("^https?://([^/:]+)")
if not host or host:lower() == ngx.var.host then return "" end
local prefix = "/" .. (host:lower():gsub("%.", "-"))
local uri = ngx.var.uri
if uri == prefix or uri:sub(1, #prefix + 1) == prefix .. "/" then return "" end
return prefix
}
add_header Cache-Control "no-store" always;
if ($cdn_redirect_prefix != "") {
return 302 https://$host$cdn_redirect_prefix$request_uri;
}
spec:
ingressClassName: nginx
rules:
- host: cdn.fillcode.com
http:
paths:
- path: /(.*)
pathType: ImplementationSpecific
backend:
service:
name: ingress-nginx-defaultbackend
port:
number: 80
---
apiVersion: v1
kind: Service