Add some servers to ssh config
This commit is contained in:
parent
449ebba3f9
commit
e243bba75d
1 changed files with 12 additions and 1 deletions
|
@ -18,7 +18,7 @@ in
|
|||
hashKnownHosts = true;
|
||||
matchBlocks = {
|
||||
"*" = {
|
||||
identityFile = personalKey;
|
||||
identityFile = (if var.workSystem then horusKey else personalKey);
|
||||
identitiesOnly = true;
|
||||
extraOptions = {
|
||||
Ciphers = "chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr";
|
||||
|
@ -84,6 +84,17 @@ in
|
|||
"gitea.bedum.horus.nu" = {
|
||||
forwardAgent = true;
|
||||
};
|
||||
|
||||
monitoring = {
|
||||
hostname = "monitoring.internal.horus.nu";
|
||||
identityFile = horusKey;
|
||||
};
|
||||
|
||||
buildserver2 = {
|
||||
hostname = "buildserver2.bedum.horus.nu";
|
||||
user = "horus";
|
||||
identityFile = horusKey;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue