catacomb: serve mirror directly
This commit is contained in:
parent
44583f670f
commit
84fa63493f
|
@ -4,6 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./fileserver.nix
|
./fileserver.nix
|
||||||
|
./mirror.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
beatific.hostName = "catacomb";
|
beatific.hostName = "catacomb";
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# Configure nginx to serve /nas/doc/website/mirror/
|
||||||
|
services.nginx = {
|
||||||
|
enable = true;
|
||||||
|
virtualHosts."mirror.catacomb.home" = {
|
||||||
|
listen = [ { addr = "10.22.20.2"; } ];
|
||||||
|
root = "/nas/doc/website/mirror";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.nginx.extraGroups = ["nas"];
|
||||||
|
}
|
|
@ -219,6 +219,7 @@ in {
|
||||||
];
|
];
|
||||||
"10.22.20.2" = [
|
"10.22.20.2" = [
|
||||||
"catacomb.home"
|
"catacomb.home"
|
||||||
|
"mirror.catacomb.home"
|
||||||
];
|
];
|
||||||
"10.22.20.3" = [
|
"10.22.20.3" = [
|
||||||
"palamas.home"
|
"palamas.home"
|
||||||
|
|
Loading…
Reference in New Issue