同一服务器上两个守护进程的 SSH 配置
我的服务器公开两个 ssh 端口:一个用于服务器本身,一个用于 git 守护进程(gitea)。 我的本地~/.ssh/config: Host server hostname 1.2.3.4 port 22 user foo identityfile ~/.ssh/id_rsa_server Host gitea hostname 1.2.3.4 port 2222 user git identityfile ~/.ssh/id_rsa_gitea 我可以使用 ssh 进入服务器$ ssh ...