Enable fancytypist.dev
parent
8d80823e1c
commit
c7a049b3c8
|
@ -33,7 +33,7 @@
|
||||||
|
|
||||||
./nixos-apps
|
./nixos-apps
|
||||||
|
|
||||||
osds-site
|
# osds-site
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -35,12 +35,12 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# "fancytypist.dev" = {
|
"fancytypist.dev" = {
|
||||||
# serverAliases = [ "www.fancytypist.dev" ];
|
serverAliases = [ "www.fancytypist.dev" ];
|
||||||
# extraConfig = ''
|
extraConfig = ''
|
||||||
# reverse_proxy ${HOST}:${toString PORT}
|
reverse_proxy ${HOST}:${toString PORT}
|
||||||
# '';
|
'';
|
||||||
# };
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -48,7 +48,10 @@ in
|
||||||
fancyTypistDotDev-site = {
|
fancyTypistDotDev-site = {
|
||||||
enable = false;
|
enable = false;
|
||||||
description = "The Haskell Servant executable server that hosts my FancyTypist.dev site.";
|
description = "The Haskell Servant executable server that hosts my FancyTypist.dev site.";
|
||||||
path = with pkgs; [ nix git ];
|
path = with pkgs; [
|
||||||
|
nix
|
||||||
|
git
|
||||||
|
];
|
||||||
script = ''
|
script = ''
|
||||||
cd ${PROJECT_ROOT}
|
cd ${PROJECT_ROOT}
|
||||||
nix run .#fancyTypistDotDev-site
|
nix run .#fancyTypistDotDev-site
|
||||||
|
@ -58,7 +61,10 @@ in
|
||||||
osdsFancyTypistSubdomain-site = {
|
osdsFancyTypistSubdomain-site = {
|
||||||
enable = true;
|
enable = true;
|
||||||
description = "Emanote site running the OSDS content.";
|
description = "Emanote site running the OSDS content.";
|
||||||
path = with pkgs; [ nix git ];
|
path = with pkgs; [
|
||||||
|
nix
|
||||||
|
git
|
||||||
|
];
|
||||||
script = ''
|
script = ''
|
||||||
cd ${PROJECT_ROOT}
|
cd ${PROJECT_ROOT}
|
||||||
nix run .#osdsFancyTypistSubdomain-site
|
nix run .#osdsFancyTypistSubdomain-site
|
||||||
|
|
Loading…
Reference in New Issue