diff options
author | lassulus <lass@aidsballs.de> | 2015-11-21 14:25:02 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-11-21 14:25:02 +0100 |
commit | a64ab3cce7be904554194b2bf2e0b4e9280134fa (patch) | |
tree | a55edf6a742a37fe74c6f994007f8d6f9cb06756 /shared/2configs/shack-nix-cacher.nix | |
parent | 876392e59f460d100d57fba75eb4a9cdab833a3e (diff) | |
parent | 92749b0f50b812d28cb4664dbb04ca0f17231936 (diff) |
Merge remote-tracking branch 'pnp/master'
Diffstat (limited to 'shared/2configs/shack-nix-cacher.nix')
-rw-r--r-- | shared/2configs/shack-nix-cacher.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/shared/2configs/shack-nix-cacher.nix b/shared/2configs/shack-nix-cacher.nix new file mode 100644 index 0000000..7519bb3 --- /dev/null +++ b/shared/2configs/shack-nix-cacher.nix @@ -0,0 +1,25 @@ +{ pkgs, lib, ... }: + +{ + krebs.nginx = { + enable = lib.mkDefault true; + servers = { + apt-cacher-ng = { + server-names = [ "acng.shack" ]; + locations = lib.singleton (lib.nameValuePair "/" '' + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_pass http://localhost:3142/; + ''); + }; + }; + }; + + krebs.apt-cacher-ng = { + enable = true; + port = 3142; + bindAddress = "localhost"; + cacheExpiration = 30; + }; +} |