18 lines
461 B
Plaintext
18 lines
461 B
Plaintext
# SSH Config for Default Key Usage
|
|
|
|
# 默认使用 Ed25519 密钥
|
|
Host *
|
|
IdentityFile /home/ben/terraform/ssh_keys/gitea_deploy_key_ed25519
|
|
IdentitiesOnly yes
|
|
|
|
# Gitea 专用配置
|
|
Host gitea.*
|
|
IdentityFile /home/ben/terraform/ssh_keys/gitea_deploy_key_ed25519
|
|
User git
|
|
IdentitiesOnly yes
|
|
|
|
# 火山引擎相关配置
|
|
Host *.volces.com
|
|
IdentityFile /home/ben/terraform/ssh_keys/gitea_deploy_key_ed25519
|
|
User git
|
|
IdentitiesOnly yes |