Move nix cache to port 7980
This commit is contained in:
parent
ad72e17f93
commit
22dc7adc4c
2 changed files with 6 additions and 2 deletions
|
@ -47,6 +47,10 @@
|
|||
virtualHosts = {
|
||||
"binarycache.home.adnab.me" = {
|
||||
serverAliases = [ "binarycache" ];
|
||||
listen = [ {
|
||||
addr = "0.0.0.0";
|
||||
port = 7980;
|
||||
} ];
|
||||
locations."/".extraConfig = ''
|
||||
proxy_pass http://localhost:${toString config.services.nix-serve.port};
|
||||
proxy_set_header Host $host;
|
||||
|
@ -57,5 +61,5 @@
|
|||
};
|
||||
};
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||
networking.firewall.allowedTCPPorts = [ 7980 ];
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
nix = {
|
||||
binaryCaches = [
|
||||
"http://binarycache.home.adnab.me"
|
||||
"http://binarycache.home.adnab.me:7980"
|
||||
];
|
||||
binaryCachePublicKeys = [
|
||||
"binarycache.home.adnab.me:ErR6pMnewf9oVyZJd5uC2nI4EZF49c7Mh86eDZWYZaw="
|
||||
|
|
Loading…
Reference in a new issue