From: John f. D. E. <jo...@de...> - 2017-01-16 11:58:49
|
Not sure if you picked up that the gzip files aren't automatically created for you within Naviserver. But they are automatically refreshed. So you need to manually create an initial gzipped version of all the files you want to deliver gzip encoded. Once the initial gzipped version exists, naviserver will deliver it, and re-gzip if the static file is updated. Daniel's filter is one way of achieving the initial gzipping. Ah ha! No, missed that important detail! Thank you! DONE! find . -name '*.css' -exec gzip -9 -f -k {} \; |