tomeshnet / ipfs-live-streaming

Like HTTP live streaming, but with IPFS which is maybe better?
GNU General Public License v3.0
449 stars 74 forks source link

Nginx - prevent caching #48

Open darkdrgn2k opened 6 years ago

darkdrgn2k commented 6 years ago

add following under EACH server directive

    expires           0;
    add_header        Cache-Control private;
benhylau commented 5 years ago

I am seeing NGINX caching of m3u8. My guess is during Our Networks 2018, we manually added this to production servers but didn't upstream this fix. We need to fix this asap... Shouldn't we use Cache-Control: no-cache?