Open Bug 1542789 Opened 5 years ago Updated 2 years ago

Cached 200 HTTP responses should be grayed out

Categories

(DevTools :: Netmonitor, defect, P3)

defect

Tracking

(Not tracked)

People

(Reporter: valentin, Unassigned)

References

(Blocks 1 open bug)

Details

In netmonitor, with Cache-Control: immutable the 200 status code should be grayed-out just like 304 requests.

The printscreen in this post shows how the UI used to look like:
https://www.keycdn.com/blog/cache-control-immutable
This corner-case probably regressed when we removed the circle before the status code.

Thanks for the report Valentin!

From the post:

This can be used to configure Apache server (and create a test case):

<filesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
    Header set Cache-Control "public, max-age=31536000, immutable"
</filesMatch>

And Nginx:

location ~* \.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$ {
    add_header Cache-Control "public, max-age=31536000, immutable";
}

Honza

Priority: -- → P3
Severity: normal → S3
You need to log in before you can comment on or make changes to this bug.