ma binary-cache: add gum
This commit is contained in:
parent
a00ace9315
commit
b3b66d2a13
13
2configs/binary-cache/gum.nix
Normal file
13
2configs/binary-cache/gum.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
|
||||||
|
{ config, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
nix = {
|
||||||
|
binaryCaches = [
|
||||||
|
"https://cache.euer.krebsco.de/"
|
||||||
|
];
|
||||||
|
binaryCachePublicKeys = [
|
||||||
|
"gum:iIXIFlCAotib+MgI3V/i3HMlFXiVYOT/jfP0y54Zuvg="
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -19,9 +19,10 @@
|
||||||
};
|
};
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
virtualHosts.nix-serve = {
|
virtualHosts."cache.euer.krebsco.de" = {
|
||||||
serverAliases = [ "cache.gum.r"
|
forceSSL = true;
|
||||||
"cache.euer.krebsco.de"
|
enableACME = true;
|
||||||
|
serverAliases = [ # "cache.gum.r"
|
||||||
"cache.gum.krebsco.de"
|
"cache.gum.krebsco.de"
|
||||||
];
|
];
|
||||||
locations."/".proxyPass= "http://localhost:${toString config.services.nix-serve.port}";
|
locations."/".proxyPass= "http://localhost:${toString config.services.nix-serve.port}";
|
||||||
|
|
Loading…
Reference in a new issue