nginx 资产缓存不工作

nginx 资产缓存不工作

我尝试在 nginx 配置文件中为所有 css/js 文件添加缓存,但出现错误。

location ~* \.(css|js)$ {
    add_header Cache-Control public;
    add_header Pragma public;
    add_header Vary Accept-Encoding;
    expires 1M;  
}

问题是 - 如果我在位置块末尾添加“return 200 'Hello Test 5';”,我会看到我的标头并过期 1M。但我需要在没有返回的情况下实现它

相关内容