I have a setup where images are rendered on a just-in-time fashion in nodejs. Afterwards the images are cached in a directory from where nginx will fetch them directly on subsequent requests.
How do I produce the same etag in nodejs/javascript as nginx will produce on the second request?
I had a thought. You could setup
nginx
to usetry_files
to first check if the file exists in the static directory and if not, proxy to node for creation. This is not exactly what you are looking for, but it will allow the browser to cache a consistent URL and then etag isn't as important.