Re: Gzip issue with Safari

2016-08-09 Thread Valentin V. Bartenev
On Tuesday 09 August 2016 04:14:39 sphax3d wrote: > Hi, > > I discover the problem reported by mcofko yesterday when I see the nginx > configuration generated by the W3 Total Cache extension for WordPress : > > if ($http_accept_encoding ~ gzip) { > set $w3tc_enc .gzip; > } > if (-f

Re: Gzip issue with Safari

2016-08-09 Thread sphax3d
Hi, I discover the problem reported by mcofko yesterday when I see the nginx configuration generated by the W3 Total Cache extension for WordPress : if ($http_accept_encoding ~ gzip) { set $w3tc_enc .gzip; } if (-f $request_filename$w3tc_enc) { rewrite (.*) $1$w3tc_enc break; } It

Re: Gzip issue with Safari

2016-05-18 Thread Francis Daly
On Wed, May 18, 2016 at 03:37:51AM -0400, mcofko wrote: Hi there, > enabled gziping on nginx and it's working on Chrome perfectly (we know this > looking at network tab in developer tools, where we can see the size of the > gzipped file one.dds that needed to be downloaded and it's around 2MB

Re: Gzip issue with Safari

2016-05-18 Thread mcofko
Let me try to explain it a little more detailed. My main problem: "But the problem appears in Safari which doesn't accept .gz file type extension", which means although we have enabled gziping on nginx and it's working on Chrome perfectly (we know this looking at network tab in developer tools,

Re: Gzip issue with Safari

2016-05-17 Thread Francis Daly
On Mon, May 16, 2016 at 06:06:21AM -0400, mcofko wrote: Hi there, I confess I am not at all sure what it is you are asking about. If it is clear to others who can help you, then there is no need for you to do anything; but if it is generally unclear, perhaps you could describe again what you

Re: Gzip issue with Safari

2016-05-16 Thread mcofko
Could you be a little more specific? I have the right configuration on nginx regarding pvr and dds types, it's: application/octet-stream...how could I modify the gzip extension to something else than .gz? Posted at Nginx Forum: https://forum.nginx.org/read.php?2,266915,266918#msg-266918

Re: Gzip issue with Safari

2016-05-16 Thread itpp2012
Have you had a look yet at /conf/mime.types Posted at Nginx Forum: https://forum.nginx.org/read.php?2,266915,266916#msg-266916 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Gzip issue with Safari

2016-05-16 Thread mcofko
Hi all, we have successfully enable gziping on the server side and it works perfectly with Chrome and FF (it auto compress the files that we want). We're using compressed assets of type: .dds and .pvr. MIME-types for those files are: application/octet-stream. But the problem appears in Safari