From 522713b5c217da450ff0befb3652699190beef21 Mon Sep 17 00:00:00 2001 From: yeti Date: Fri, 16 May 2025 09:22:10 +0100 Subject: [PATCH] refactor: migrate ssh config & keys from /opt/secure/ssh to ~/.ssh --- 00-allow-git.conf => .ssh/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename 00-allow-git.conf => .ssh/config (77%) mode change 100644 => 100755 diff --git a/00-allow-git.conf b/.ssh/config old mode 100644 new mode 100755 similarity index 77% rename from 00-allow-git.conf rename to .ssh/config index fc74c59..53c7c09 --- a/00-allow-git.conf +++ b/.ssh/config @@ -1,7 +1,7 @@ Host alps HostName 10.88.0.1 User git - IdentityFile /opt/secure/ssh/id_ed25519 + IdentityFile ~/.ssh/id_ed25519 IdentitiesOnly yes StrictHostKeyChecking yes Port 2222 @@ -10,7 +10,7 @@ Host alps Host github HostName github.com User git - IdentityFile /opt/secure/ssh/id_ed25519 + IdentityFile ~/.ssh/id_ed25519 IdentitiesOnly yes StrictHostKeyChecking yes ProxyCommand none