adding marcel ssh key

This commit is contained in:
Tassilo - 2023-04-28 22:37:27 +02:00
parent af44c60e05
commit 623b367601
Signed by: revol-xut
GPG Key ID: 4F56FF7759627D07
4 changed files with 20 additions and 1 deletions

1
keys/ssh/marcel Normal file
View File

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK255EY8KUx5cMXSuoERXJSzVnkDUM+y8sMAVrRoDBnn

View File

@ -77,7 +77,7 @@ in
../../keys/ssh/oxa1
../../keys/ssh/marenz1
../../keys/ssh/marenz2
../../keys/ssh/astro
../../keys/ssh/marcel
];
};
services.openssh = {

View File

@ -16,5 +16,6 @@
./website.nix
./trekkie.nix
./chemo.nix
./landingpage.nix
];
}

View File

@ -0,0 +1,17 @@
{ pkgs, config, ... }: {
services = {
nginx = {
enable = true;
recommendedProxySettings = true;
virtualHosts = {
"${(builtins.replaceStrings [ "tlm.solutions" ] [ "dvb.solutions" ] config.deployment-TLMS.domain)}" = {
enableACME = true;
forceSSL = true;
extraConfig = ''
rewrite ^ https://kid.${config.deployment-TLMS.domain}/en/map/ temporary;
'';
};
};
};
};
}