Skip to content
Add SSH Keys

Add SSH Keys

Add an SSH public key when you want to connect from your own terminal.

Create or find your key

If you already use SSH, your public key is usually one of these files:

~/.ssh/id_ed25519.pub
~/.ssh/id_rsa.pub

To create a new Ed25519 key:

ssh-keygen -t ed25519 -C "you@example.com"

Copy the public key, not the private key. The public key ends in .pub.

Add the key

  1. Open app.psilon.dev.
  2. Go to Profile.
  3. Paste the public key into the SSH key form.
  4. Save it.

Connect

Use the hostname shown in the dashboard:

ssh <name>.psilon.dev

If SSH asks which key to use, pass it explicitly:

ssh -i ~/.ssh/id_ed25519 <name>.psilon.dev