# SSH Config Template for DevOps
Host *
    ServerAliveInterval 60
    ServerAliveCountMax 3
    AddKeysToAgent yes

Host dev-server
    HostName dev.example.com
    User devops
    IdentityFile ~/.ssh/dev_key
    Port 22

Host prod-*
    User admin
    IdentityFile ~/.ssh/prod_key
    StrictHostKeyChecking yes
