diff options
author | David Runge <dave@sleepmap.de> | 2021-03-04 12:56:54 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2021-03-04 12:56:54 +0100 |
commit | 0d84455e7406cac05af7b3df7a023de14e904729 (patch) | |
tree | bd192b6ead17b7a81b74556e0489d9fdcebee1f5 | |
parent | 01d5479a8a011b544809a2b585a62cd0b33e2db6 (diff) | |
download | dotfiles-0d84455e7406cac05af7b3df7a023de14e904729.tar.gz dotfiles-0d84455e7406cac05af7b3df7a023de14e904729.tar.bz2 dotfiles-0d84455e7406cac05af7b3df7a023de14e904729.tar.xz dotfiles-0d84455e7406cac05af7b3df7a023de14e904729.zip |
ssh_config: Add production-api-host
.ssh/config:
Add config for production-api-host.
-rw-r--r-- | .ssh/config | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.ssh/config b/.ssh/config index ba66256..82c9d25 100644 --- a/.ssh/config +++ b/.ssh/config @@ -456,3 +456,13 @@ Host holoplot-linux-builder-1 IdentityFile ~/.ssh/id_ed25519 Port 22 User holoplot + +Host production-api-host + Compression yes + ControlMaster auto + ControlPath ~/.ssh/socket-%r@%h:%p + Hostname production-api-host.holoplot.net + IdentitiesOnly yes + IdentityFile ~/.ssh/id_ed25519 + Port 22 + User admin |