Skip to content

Commit 2217b1d

Browse files
authored
Updates ssh-keygen snippet due to new defaults
1 parent 59f6320 commit 2217b1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/dummy/app/pods/docs/deploying/template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The first step you'll need to take is to generate a _deploy key_. This is a spec
6565
To generate the public/private key pair on macOS or Linux, you'll use the [`ssh-keygen`](https://www.freebsd.org/cgi/man.cgi?query=ssh-keygen&sektion=1&manpath=OpenBSD+3.9) command line tool. On Windows, you can use [PuTTYGen](https://www.ssh.com/ssh/putty/windows/puttygen) instead.
6666

6767
```sh
68-
ssh-keygen -t rsa -b 4096 -N '' -f deploy_key
68+
ssh-keygen -t rsa -m PEM -b 4096 -N '' -f deploy_key
6969
```
7070

7171
This will produce two files in your current directory: `deploy_key` (the private key) and `deploy_key.pub` (the public key). **Do not commit these files to your repository.**

0 commit comments

Comments
 (0)