作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为 Gatsby 设置 Nginx 服务器(版本 1.17.1),按照 https://www.gatsbyjs.org/docs/caching/ 上的建议进行操作.
下面的片段是我的 server {}
的部分阻止尝试实现推荐的缓存配置;
location ~* \.(?:html)$ {
add_header Cache-Control "public, max-age=0, must-revalidate";
}
location /static {
add_header Cache-Control "public, max-age=31536000, immutable";
}
location ~* \.(?:css|js)$ {
add_header Cache-Control "public, max-age=31536000, immutable";
}
location /sw\.js {
add_header Cache-Control "public, max-age=0, must-revalidate";
}
location {}
用于定义 service worker 文件缓存配置的块,
sw.js
, 如下;
if ($request_uri ~ ^sw\.(?:js)$) {
set $no_cache 1;
}
sw.js
外,所有文件都按预期成功缓存。 .
sw.js
设置缓存控制 header 至
public, max-age=0, must-revalidate
?
最佳答案
我最终得到了以下有关 Gatsby.js 缓存的 nginx 配置:
location ~* \.(?:html)$ {
add_header Cache-Control "public, max-age=0, must-revalidate";
}
location /page-data {
add_header Cache-Control "public, max-age=0, must-revalidate";
}
location = /sw.js {
add_header Cache-Control "public, max-age=0, must-revalidate";
}
location /static {
add_header Cache-Control "public, max-age=31536000, immutable";
}
location ~* \.(?:js|css)$ {
add_header Cache-Control "public, max-age=31536000, immutable";
}
关于nginx - 仅为所选文件定义特定的缓存控制 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56963293/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!