Conectar SSH en WPEngine

1. Abrir una terminal desde tu computadora (de preferencia Git Bash)

2. Usar ssh-keygen para generar un nuevo Key:
ssh-keygen -t ed25519 -f ~/.ssh/wpengine_ed25519

3. Presione Enter para dejar la frase de contraseña en blanco.

4. Abrir el Public Key en “wpengine_ed25519.pub” usando bloc de notas desde C:/Users/[youruser]/.ssh

5. Ir a https://my.wpengine.com/profile/ssh_keys y clic en “Create SSH Key”, pegar el Public Key y luego clic sobre “Add SSH Key”

6. Crear SSH Config:
Usando el siguiente paso desde la terminal: https://wpengine.com/support/ssh-keys-for-shell-access/#Create_SSH_Config

O ir a “C:/Users/[youruser]/.ssh”, y crear un nuevo file llamado “config” (sin extension), y pegar las siguientes lineas:

Host *.ssh.wpengine.net
IdentityFile ~/.ssh/wpengine_ed25519
IdentitiesOnly yes

7. Hacer el test:
https://wpengine.com/support/ssh-keys-for-shell-access#Test_SSH_Key

Usando el siguiente comando en la terminal:

ssh environment@environment.ssh.wpengine.net

Referencia: https://wpengine.com/support/ssh-keys-for-shell-access/

Jeisson Magallanes