Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/prerequisites-41d8559.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ Go to *Applications & Resources*, choose *Applications*, and select your applica
- Continue with one of the following options. **OPTION 1** is recommended, as it removes the need to specify the IdP SAML application's assertion/logout URL.
- **OPTION 1:** Enable request signing.
- Create a new signing certificate and private key in PKCS8 format.
⚠️ The following bash script does not work with Windows Powershell. For Windows users the usage of Windows Subsystem for Linux (WSL) is recommended.

```
```bash
# generate a certificate and a private key in PKCS8 format with a reasonable validity
openssl req -x509 -newkey rsa:2048 -keyout private.key -out cert.pem -nodes -days <validity>
Comment on lines 69 to 70
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Idea: Should we use a default, e.g. 365 or should we make it a parameter and ask for input?

# add a password (encrypted)
Expand Down
Loading