This commit is contained in:
Leonardo Eugênio 2024-10-05 10:50:17 -03:00
parent 41fe2f92ea
commit 3c98026133
4 changed files with 56 additions and 0 deletions

13
hosts/phantom/goofs.nix Normal file
View file

@ -0,0 +1,13 @@
{ inputs, ... }:
{
services.nginx.virtualHosts."catboy-spinner.lelgenio.com" = {
enableACME = true;
forceSSL = true;
root = inputs.catboy-spinner;
};
services.nginx.virtualHosts."tomater.lelgenio.com" = {
enableACME = true;
forceSSL = true;
root = inputs.tomater;
};
}