云服务器内容精选

  • 使用限制 如果您的后台存在特殊配置,暂不支持配置Content-Type、Cache-Control、Expires。 以下请求头仅支持修改响应头信息,不支持将“请求头操作”类型设置为“删除”: Expires Content-Disposition Content-Type Content-Language Cache-Control - 目前不支持添加/删除/编辑以下标准头部信息: Origin accept-ch clear-site-data push-policy WsTag Tcp-Retrans access-control-allow-methods access-control-max-age Vary Date X-Forward-Type width Age ETag Purge-Extra X-Cacheable access-control-allow-headers Front-End-Https ping-to content-range cross-origin-opener-policy Location viewport-width Mime-Version Proxy-Support X-Resp-Time If-Range sec-fetch-dest device-memory X-Mem-Url Cdn-Src-Ip ping-from Allow X-Url-Blackwhite-List early-data Sec-WebSocket-Extensions if-unmodified-since X-Forward-Uri Conf-File x-download-options X-Error-Status Negotiate x-permitted-cross-domain-policies service-worker-allowed X-Appa x-firefox-spdy content-dpr X-Miss-Times-Limit X-Bwctrl-Limit X-Bwctrl-Para X-Max-Conns nel public-key-pins-report-only X-MAA-Alias Sec-WebSocket-Location X-Cache-2 Authorization Expect last-event-id Sec-WebSocket-Key X-Refresh-Pattern forwarded X-Local-Ip Sec-WebSocket-Protocol feature-policy cross-origin-resource-policy Request-Range Conf-Other strict-transport-security signed-headers Cdn-Server-Ip Sec-WebSocket-Version accept X-Black-List content-location sourcemap Partition-Block-Size Proxy-Authentication-Info cross-origin-embedder-policy X-Request-Id x-dns-prefetch-control if-none-match If-Non-Match Public X-White-List x-ua-compatible Keep-Alive Transfer-Encoding alt-svc max-age Last-Modified x-xss-protection Sec-WebSocket-Nonce dnt Link x-robots-tag Key expect-ct sec-fetch-site access-control-request-headers X-Error-URL X-Log-Url content-encoding X-Times-Limit X-Appa-Origin X-Miss-Rate-Limit X-IP-Region Dynamic X-Squid-Error From accept-ch-lifetime X-MAA-Auth Connection X-Via-CDN Max-Forwards Upgrade sec-fetch-user content-security-policy-report-only Pragma save-data X-Client-Ip Cdn-Qos x-powered-by X-Forward-Measured accept-push-policy server large-allocation X-Request-Uri X-Forward-Ip Host Proxy-Authenticate X-Request-Url X-Cache-Lookup Conf-Option X-Forward-Host upgrade-insecure-requests X-Accelerator-Vary signature X-Ip-Blackwhite-List X-Cdn-Src-Port Sec-WebSocket-Draft Sec-WebSocket-Origin X-IP-Region-CN public-key-pins Ws-Hdr If-Match Proxy-Authorization X-Rate-Limit sec-fetch-mode trailer X-Rewrite-Url Via X-Cache X-Mgr-Traffic accept-signature Warning dpr If-Modified-Since Authentication-Info access-control-request-method Content-Length x-frame-options(xfo) Range A_Dynamic te x-forwarded-host Title WWW-Authenticate tk X-Query-Key accept-charset access-control-allow-origin accept-ranges report-to access-control-expose-headers x-content-type-options Proxy-Connection server-timing Retry-After x-requested-with X-No-Referer X-Forward-Peer Sec-WebSocket-Accept X-Forwarded-For Conf-Err-Host Sec-WebSocket-Key2 access-control-allow-credentials X-Denyattack-Dynconf referer-policy Sec-WebSocket-Key1 content-security-policy timing-allow-origin X-DNS-Time Conf-File-List X-expireURL x-pingback Purge-Domain Server - -
  • 背景信息 如果您的源站地址因业务需求做了301/302 重定向,CDN的回源请求会返回301/302状态码,当您开启回源跟随后,CDN节点会先跳转到301/302对应地址获取资源,缓存后再返回给用户。开启或未开启回源跟随CDN的处理如下: 未开启:CDN会将301/302对应跳转地址直接返回给用户,让用户自己去请求跳转地址的资源。如果该跳转地址 域名 未加入CDN,则该请求过程不会有加速效果。 已开启:CDN会先跳转到301/302对应地址获取用户所需资源后缓存至节点并返回给用户,当其他用户再次请求同样资源时会直接命中节点缓存。
  • 配置示例 域名www.example.com开启回源跟随,配置如下: 用户请求www.example.com/cdn.jpg文件,未命中缓存,节点回源请求资源。如果源站返回HTTP Response状态码301/302,重定向跳转地址为www.example.com/test/cdn.jpg。 节点收到301/302状态码后,直接向需要跳转的地址发起请求。 节点获取到资源后,返回给用户,并缓存到节点。 如果用户B再请求www.example.com/cdn.jpg文件,直接命中缓存,节点将资源返回给用户。 域名www.example.com未开启回源跟随,配置如下: 用户请求www.example.com/cdn.jpg文件,未命中缓存,节点回源请求资源。如果源站返回HTTP Response状态码301/302,重定向跳转地址为www.example.com/test/cdn.jpg。 节点直接将HTTP Response状态码301/302返回给用户,由客户端向重定向跳转地址发起请求。 如果重定向跳转地址的域名未接入CDN,则节点不能缓存该资源,不会有加速效果。 如果用户B请求www.example.com/cdn.jpg文件,重复以上流程。
  • 背景信息 Range信息的作用是在HTTP请求头中指定返回数据的范围,即第一个字节的位置和最后一个字节的位置。如:Range: bytes=0-100就是请求该文件的前101个字节的数据内容。 开启Range回源后,当客户端请求某资源,如果CDN节点上未缓存该资源或资源已过期,节点回源时会采用Range请求,从源站分段获取用户需要的部分资源并缓存到CDN节点上。 Range回源能有效缩短大文件的分发时间,提升回源效率,减少回源消耗。