Use the .appcache extension instead of .manifest, as per http://html5.org/r/5812 - thx mathias
This commit is contained in:
parent
289233a8c0
commit
3b7414f89a
|
@ -9,7 +9,7 @@ types {
|
|||
application/x-javascript js;
|
||||
application/atom+xml atom;
|
||||
|
||||
text/cache-manifest manifest;
|
||||
text/cache-manifest manifest appcache;
|
||||
text/mathml mml;
|
||||
text/plain txt;
|
||||
text/vnd.sun.j2me.app-descriptor jad;
|
||||
|
|
|
@ -90,7 +90,7 @@ http {
|
|||
expires 1M;
|
||||
|
||||
# Static assets
|
||||
location ~* ^.+\.(manifest)$ {
|
||||
location ~* ^.+\.(manifest|appcache)$ {
|
||||
expires -1;
|
||||
root /sites/example.com/public;
|
||||
access_log logs/static.log;
|
||||
|
|
Loading…
Reference in New Issue