Add hydra server
parent
d4735ff7c3
commit
c3b97e1b2b
|
@ -9,7 +9,8 @@
|
||||||
./git.ewanick.com.nix
|
./git.ewanick.com.nix
|
||||||
./paperless.ewanick.com.nix
|
./paperless.ewanick.com.nix
|
||||||
|
|
||||||
./fancytypist.com.nix
|
# ./fancytypist.com.nix
|
||||||
|
./hydra.fancyTypist.com.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# when in doubt, clear away the certs with
|
# when in doubt, clear away the certs with
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
let
|
||||||
|
baseUrl = "hydra.fancyTypist.com";
|
||||||
|
HOST = "localhost";
|
||||||
|
PORT = "5567";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
services.hydra = {
|
||||||
|
enable = true;
|
||||||
|
hydraURL = "https://${HOST}:${PORT}";
|
||||||
|
notificationSender = "hydra@localhost";
|
||||||
|
buildMachinesFiles = [ ];
|
||||||
|
useSubstitutes = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.caddy = {
|
||||||
|
enable = true;
|
||||||
|
virtualHosts = {
|
||||||
|
"${baseUrl}" = {
|
||||||
|
extraConfig = ''
|
||||||
|
reverse_proxy ${HOST}:${PORT}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue