Web Protocol Lab — Last-Modified demo file =========================================== このファイルは nginx の静的ファイル配信で提供され、ファイルの更新日時が Last-Modified ヘッダーとして返ります。 検証手順: 1. curl -i http://localhost:8080/cache/static/last-modified-demo.txt → 200 OK とともに Last-Modified ヘッダーが返ります。 2. 返ってきた日時をそのまま If-Modified-Since に入れて再リクエスト: curl -i -H 'If-Modified-Since: ' \ http://localhost:8080/cache/static/last-modified-demo.txt → 304 Not Modified が返ります。 nginx は if_modified_since exact 設定のため、日時が完全一致した場合のみ 304 を返します。1秒でもずらすと 200 が返ることも確認してみてください。