1
0
Fork 0
nixfiles/hosts/web-2/bubblesort.nix

15 lines
315 B
Nix

{ ... }:
{
services.nginx.virtualHosts = {
"bubblesort.clerie.de" = {
enableACME = true;
forceSSL = true;
root = fetchGit {
url = "https://git.clerie.de/clerie/bubblesort_js.git";
ref = "main";
rev = "39d54701a11f4fb48d7e023e384a848e6bde5640";
};
};
};
}