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.pubTo 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
- Open app.psilon.dev.
- Go to Profile.
- Paste the public key into the SSH key form.
- Save it.
Connect
Use the hostname shown in the dashboard:
ssh <name>.psilon.devIf SSH asks which key to use, pass it explicitly:
ssh -i ~/.ssh/id_ed25519 <name>.psilon.dev