about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-02-27T17·18+0000
committerWilliam Carroll <wpcarro@gmail.com>2019-02-28T12·24+0000
commitf4c53982c70927a23276405c4bc9c02b1a59fa4c (patch)
tree491955e67b8995981017721bd9575e36fd0aff0f /README.md
parentbabd7393d5804ffdaae1976426c9afb5ee89930e (diff)
Support .ssh/config
Beware and avoid leaking sensitive data.

Options:
- ensure wpcarro/dotfiles remains private while support potentially
sensitive documents
- consider encrypting sensitive documents using gnupg or git-crypt
- consider having someone from the Security team audit the repository to
ensure that nothing sensitive is being leaked
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 1 insertions, 27 deletions
diff --git a/README.md b/README.md
index b2f4d40cc3..539185fed3 100644
--- a/README.md
+++ b/README.md
@@ -7,33 +7,7 @@ other items.
 Configuration is everything.
 
 
-# SSH
-
-Here are a few useful tips for working with SSH.
-
-## ssh_config
-
-Instead of creating shell aliases and functions for conveniently accessing
-remote nodes over SSH, edit your `~/.ssh/config` file.
-
-Instead of doing this...
-
-```bash
-$ alias ec2='ssh -i /path/to/identity_file.pem ubuntu@<ec2-instance-public-ip>'
-```
-
-...edit your `~/.ssh/config`:
-
-```
-Host ec2
- User ubuntu
- HostName <ec2-instance-public-ip>
- IdentityFile /path/to/identity_file.pem
-
-# Host * configuration below...
-```
-
-## sshfs
+# SSHFS
 
 SSHFS enables seamless file transfers from your local machine to a remote
 machine.