我最近为将在 Heroku 上运行的 Django 项目启用了 Whitenoise。我希望 Whitenoise 自动压缩我的静态文件,这似乎可以从文档的这一部分: http ://whitenoise.evans.io/en/stable/django.html#add-compression-and-caching-support
但是,将以下内容添加到我的设置后:
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
我发现我的文件没有被压缩!
curl -H "Accept-Encoding: gzip" -I http://localhost:8080/static/app/js/auth.min.js
HTTP/1.0 200 OK
Date: Thu, 30 Nov 2017 17:14:27 GMT
Server: WSGIServer/0.2 CPython/3.5.2
Last-Modified: Thu, 30 Nov 2017 01:45:33 GMT
Content-Length: 103648
Content-Type: application/javascript; charset="utf-8"
Cache-Control: max-age=0, public
Access-Control-Allow-Origin: *
但是,如果我手动 gzip 我的一个文件,一切正常
$ gzip ../app/static/app/js/auth.min.js
$ curl -H "Accept-Encoding: gzip" -I http://localhost:8080/static/app/js/auth.min.js
HTTP/1.0 200 OK
Date: Thu, 30 Nov 2017 17:21:47 GMT
Server: WSGIServer/0.2 CPython/3.5.2
Last-Modified: Thu, 30 Nov 2017 17:14:53 GMT
Content-Type: application/javascript; charset="utf-8"
Cache-Control: max-age=0, public
Access-Control-Allow-Origin: *
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 21870
我是否只需要在我的构建过程中添加一些脚本来压缩所有内容,或者 Whitenoise 是否包含这个?如果是这样,有没有人知道我可能遗漏了什么或做错了什么?我真的很希望能够永久保存所有内容(如上面的文档中所宣传的那样)