Remove SSH host config tip from SSH page

Anthony Wang 2023-08-07 02:14:54 +00:00
parent 9675beb907
commit 52beaa11e5

10
SSH.md

@ -18,16 +18,6 @@ If you want to run graphical apps, you can use X11 forwarding with `ssh -X`. Not
If you use Wayland, you can try [Waypipe](https://gitlab.freedesktop.org/mstoeckl/waypipe), which may have better performance. Set the environment variable `QT_QPA_PLATFORM=wayland`.
### SSH config file
You can add exozyme as a `Host` to your `.ssh/config` file, so you can simply type `ssh exozyme` instead of the longer `ssh USERNAME@exozy.me`. Here is an example from @a that also forwards the SSH and GPG agents to exozyme.
```
Host exozyme
HostName exozy.me
ForwardAgent yes
RemoteForward /run/user/1000/gnupg/S.gpg-agent /run/user/1000/gnupg/S.gpg-agent.extra
```
### SOCKS proxy
You can route your internet traffic through exozyme using [SOCKS](https://en.wikipedia.org/wiki/SOCKS) (a bit like a VPN but simpler). First, start the SOCKS proxy using `ssh -D 8080 exozy.me`. Now configure your web browser to use the SOCKS proxy at `localhost:8080`.