{{ template "_base.html" . }} {{ define "title" }}SSH Keys{{ end }} {{ define "content" }}
This page allows you to add, view and remove ssh keys to and from your distillery account.
This table shows ssh keys currently associated with your account. To add a new key, use the Add New Key button above. To remove an ssh key from your account, simply click the Delete button.
| Comment | Signature | Actions |
|---|---|---|
| {{ .Comment }} |
{{ $sig }}
|
You can use these ssh keys to connect to the distillery via ssh. You can only connect to instances for which you appear as an Administrator on your user page.
In the following we will provide instructions on how to connect to your WissKI instance via the distillery server.
In the following we will assume {{ .Slug }} is the name of the WissKI you want to you want to connect to.
From a Linux (or Mac, or Windows 11) command line you may use:
ssh -J {{ .Domain }}:{{ .Port }} www-data@{{ .Hostname }}
You may also place the following into your $HOME/.ssh/config file:
Host *.{{ .Domain }}
ProxyJump {{ .Domain }}.proxy
User www-data
Host {{ .Domain }}.proxy
User www-data
Hostname {{ .Domain }}
Port {{ .Port }}
and then connect simply via:
ssh {{ .Hostname }}