I've been looking into combining static files and serving them as one file. But how would I go about doing this when my django stack is on a apache proxy with a nginx loadbalancer?
regards Bjarni I.
|
|
|
You might want to look into nginx's try_files directive. Write a view in your Django code that will compress the files and put them onto your nginx server (or something else it can access, like an NFS share), and then have nginx |
|||
|
|
|
You might try django-compress. In your settings module, you define groups of static files (js, css), that compress will, well, compress into one file per group. There's then a couple of template tags that you use to include the compressed files in your templates. For example
Then, somewhere in your templates (most likely your base template), you use You can define multiple groups if you have some css/js that you want to include in all pages, but some you only want to include in certain pages, or whatever you need. It's pretty flexible. You can also easily turn compression off for easy debugging. It also adds a unique version number to the resulting compressed file(s) to get around browser caching problem. This is the |
|||||
|