Skip to content

Commit

Permalink
update ssh.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccullagh committed Jul 27, 2024
1 parent 3bc0ef1 commit 1e8335b
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions instances/ssh.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SSH access

SSH is implemented through Amezmo's secure
entry point host. We securely route your connection from our load balancer directly to your instance using a
SSH is implemented through the Amezmo secure
entry point host. Amezmo securely route your connection from our load balancer directly to your instance using a
pre-allocated port. Learn more about [enabling ssh](/docs/instances/enable-or-disable-ssh) access and finding your port.


Expand All @@ -16,23 +16,22 @@ ssh -i <path to your private key> -p $PORT deployer@$DOMAIN.lb2.amezmo.co
This can be found on your instance's Overview page.

## SFTP command
```bash
sftp -i <path to your private key> $PORT deployer@$DOMAIN.lb3.amezmo.co
```bash
sftp -i <path to your private key> -P $PORT deployer@$DOMAIN.lb3.amezmo.co
```

The `$DOMAIN` variable above can be found from your dashboard. It is the part before your [internal domain](/docs/domains/development-subdomain). To find your SSH port, please see the [SSH port](/docs/instances/enable-or-disable-ssh#ssh-port) page

## Windows Putty application

#Session
**Hostname**: $DOMAIN.lb3.amezmo.co
**Port**: $PORT
**Hostname**: $DOMAIN.lb3.amezmo.co
**Port**: $PORT
**Connection type**: ssh

# Connection -> SSH -> Auth
## Connection -> SSH -> Auth
**Private key for authentication**: Browse to local file with private key

## Limits
- Root access is not implemented
- Public Key authentication is the only supported method of authentication

0 comments on commit 1e8335b

Please sign in to comment.