update goofs

This commit is contained in:
Leonardo Eugênio 2024-10-05 17:26:45 -03:00
parent 28f47361a0
commit d49b17879d
5 changed files with 40 additions and 34 deletions

View file

@ -18,7 +18,6 @@
./writefreely.nix
./email.nix
./forgejo.nix
./warthunder-leak-counter.nix
./invidious.nix
./davi.nix
./goofs.nix

View file

@ -33,4 +33,9 @@
forceSSL = true;
root = inputs.tomater;
};
services.nginx.virtualHosts."youre-wrong.lelgenio.com" = {
enableACME = true;
forceSSL = true;
root = inputs.youre-wrong;
};
}

View file

@ -1,19 +0,0 @@
{
inputs,
pkgs,
config,
...
}:
{
imports = [ inputs.warthunder-leak-counter.nixosModules.default ];
services.warthunder-leak-counter.enable = true;
services.nginx.virtualHosts."warthunder-leak-counter.lelgenio.com" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:${toString config.services.warthunder-leak-counter.port}";
};
};
}