On Wed, Feb 04, 2015 at 11:36:04PM +0200, peter petrov wrote: > In my previous post I explained what tried and didn't manage to it. I > attached nginx.conf file. I'll > be very grateful is somebody show me a successful way to do this.
http://nginx.org/r/gzip_static gzip_static on; curl -i --compressed http://localhost/file.html will get file.html.gz if it exists, with "Content-Encoding: gzip"; or file.html if that exists, or 404. Check the "bytes sent" field in your access_log to see which was sent. Omit the "--compressed" in the curl command to see the difference. -- Francis Daly [email protected] _______________________________________________ nginx mailing list [email protected] http://mailman.nginx.org/mailman/listinfo/nginx
