fix(ssh): make SSH client authentication more short-lived

This commit is contained in:
2026-07-22 19:45:01 +02:00
parent 6ba968b84e
commit 254f9c2577
+2 -2
View File
@@ -46,7 +46,7 @@ in
) )
// { // {
"*" = { "*" = {
AddKeysToAgent = "yes"; AddKeysToAgent = "1h";
ForwardAgent = false; ForwardAgent = false;
identityFile = [ identityFile = [
"~/.ssh/id_ed25519_sk" "~/.ssh/id_ed25519_sk"
@@ -55,7 +55,7 @@ in
IdentitiesOnly = true; IdentitiesOnly = true;
ControlMaster = "auto"; ControlMaster = "auto";
ControlPath = "~/.ssh/control/%C"; ControlPath = "~/.ssh/control/%C";
ControlPersist = "10m"; ControlPersist = "10s";
}; };
}; };
}; };