[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#37207: guix.gnu.org Last Modified at epoch
From: |
Ludovic Courtès |
Subject: |
bug#37207: guix.gnu.org Last Modified at epoch |
Date: |
Thu, 26 Sep 2019 10:39:45 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
Hi Tobias,
Tobias Geerinckx-Rice <address@hidden> skribis:
> Turning these off will of course prevent all caching. I don't know if
> that would add measurable load to guix.gnu.org (it would be more
> problematic if we used a CDN, but it might still make a difference).
>
> Nix does something both interesting and icky — as always: patch[0]
> nginx to look up the realpath() instead, so clients can still cache
> using If-None-Match.
> [0]: https://github.com/NixOS/nixpkgs/pull/48337
(See
<https://raw.githubusercontent.com/NixOS/nixpkgs/9bc23f31d29138f09db6af52708a9b8b64deec64/pkgs/servers/http/nginx/nix-etag-1.15.4.patch>.)
I had overlooked this patch but it looks like the right approach
overall. Calling ‘realpath’ each time seems a bit expensive as it
creates an ‘lstat’ storm, but I can’t think of a better solution.
I also found this post whose main interest is in showing how to write a
plugin to generate custom etags:
https://mikewest.org/2008/11/generating-etags-for-static-content-using-nginx/
Thoughts?
Ludo’.