# SSH Key Configuration ## 🔐 SSH Private Key Location The SSH private key `roa_oracle_server` has been moved to a secure location for security reasons. ### Current Location: ``` roa2web/secrets/roa_oracle_server ``` ### Security Measures Applied: - ✅ File moved to `secrets/` directory (protected by .gitignore) - ✅ File permissions set to 600 (owner read/write only) - ✅ Directory `secrets/` is excluded from git tracking ### Usage in Scripts: Update any scripts that reference the SSH key to use the new path: ```bash # Old path (INSECURE): # ssh -i roa2web/ssh-tunnel/roa_oracle_server # New path (SECURE): ssh -i roa2web/secrets/roa_oracle_server ``` ### Important Notes: - ⚠️ The SSH key is no longer tracked in git history after security cleanup - 🔄 Consider regenerating the SSH key if it was compromised - 📋 Ensure all team members update their scripts to use the new path --- *SSH key secured: 2025-08-03*