diff options
| author | Arseney300 <Arseney300@gmail.com> | 2026-02-20 04:07:06 +0700 |
|---|---|---|
| committer | Arseney300 <Arseney300@gmail.com> | 2026-02-20 04:07:06 +0700 |
| commit | 4fef40d8353b8af0f8c6c2b6ff87efc45e1cc13b (patch) | |
| tree | e97aab0dace1f48842788fc8e6dd19718e031fcb | |
| parent | 8def4032f51063a9aea922966b00b3d0dcc86ce2 (diff) | |
Update setup guide: use ed25519 keys for git server
RSA keys are rejected by OpenSSH 10.0 in debian:latest
due to dropped SHA-1 signature support. Ed25519 is the
recommended key type.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
| -rw-r--r-- | doc/setup-guide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/setup-guide.md b/doc/setup-guide.md index 581dee1..e43a342 100644 --- a/doc/setup-guide.md +++ b/doc/setup-guide.md @@ -79,8 +79,8 @@ mkdir -p /var/git_ssh_keys # Directory for git repositories mkdir -p /var/git/repos -# Copy your public SSH keys for git access -# cp ~/.ssh/id_rsa.pub /var/git_ssh_keys/mykey.pub +# Copy your public SSH keys for git access (use ed25519, RSA is not supported) +# cp ~/.ssh/id_ed25519.pub /var/git_ssh_keys/mykey.pub ``` ### 4.2 Build and start |
