- From: albertsylvester <notifications@github.com>
- Date: Mon, 06 Feb 2017 18:01:11 -0800
- To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 7 February 2017 02:01:43 UTC
Dear @jakearchibald need a little help here.
I have a service worker https://www.tavest.com/service-worker-tavest-test.js
Why is somehow the service worker being cached by chrome? So when I update the service worker, the update didn't take place.
I've been also set this up in my .htaccess to make the service-worker not being cached yet not successful.
```
<filesMatch "^(service-worker)\.js$">
FileETag None
<ifModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</ifModule>
</filesMatch>
```
Thank you
Best regards,
Albert
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/issues/893#issuecomment-277878117
Received on Tuesday, 7 February 2017 02:01:43 UTC