SFTP (SSH File Transfer Protocol) lets you securely transfer files between your computer and your hosting account. This guide walks you through generating an SSH key, adding it to Enhance, and connecting with an SFTP client.
1
Generate an SSH Key on Your Computer
SFTP on Enhance uses SSH key authentication. If you don't already have a key pair, generate one now.
Windows (Git Bash or PowerShell) / macOS / Linux:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
Press Enter to accept the default file location (~/.ssh/id_rsa). You can set a passphrase or leave it blank.
Then copy your public key:
# macOS / Linux cat ~/.ssh/id_rsa.pub # Windows PowerShell Get-Content ~/.ssh/id_rsa.pub
2
Add Your Public Key in Enhance
- Log in to the Enhance control panel at lbreeze.net.
- Go to Websites and select your domain.
- Click the Developer Tools tab.
- Click Manage SSH Keys.
- Paste your public key into the field and save.