diff options
author | lassulus <lassulus@lassul.us> | 2021-10-25 16:21:41 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-10-25 16:21:41 +0200 |
commit | 64387bbb9a3f41b5b0c0951c9e70b2d57227e1b3 (patch) | |
tree | c9a3e7a50ee035ab4df8a8fa29020b3e20dd16ff /lass | |
parent | 128b2a228479de5cf8c1c2f8f9c0a5a662f85db1 (diff) |
l binary-cache: set priority behind cache.nixos.org
Diffstat (limited to 'lass')
-rw-r--r-- | lass/2configs/binary-cache/server.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lass/2configs/binary-cache/server.nix b/lass/2configs/binary-cache/server.nix index 101dd045f..baa891821 100644 --- a/lass/2configs/binary-cache/server.nix +++ b/lass/2configs/binary-cache/server.nix @@ -29,6 +29,13 @@ locations."/".extraConfig = '' proxy_pass http://localhost:${toString config.services.nix-serve.port}; ''; + locations."= /nix-cache-info".extraConfig = '' + alias ${pkgs.writeText "cache-info" '' + StoreDir: /nix/store + WantMassQuery: 1 + Priority: 42 + ''}; + ''; }; virtualHosts."cache.krebsco.de" = { forceSSL = true; |