nginx代理304問題

itk發表於2024-08-08

nginx代理304問題

配置代理不檢查304

location ^~ /test/ {
    proxy_pass http://10.1.1.1/;
    proxy_set_header Host  test.peter-zhou.com;
    proxy_set_header If-Modified-Since "";
    proxy_set_header If-None-Match "";
}

測試

網頁開啟http://xxx.xxx.xxx/test/test.html 兩次
檢查http code 是否一直為200

相關文章