Skip to content

Commit

Permalink
docs: add alternative solution for TLS/SSL issues using symbolic link
Browse files Browse the repository at this point in the history
  • Loading branch information
NaufalAns authored Dec 23, 2024
1 parent 5a14834 commit 640e02d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/known-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,13 @@ It's also possible to use the `SSL_CERT_FILE` and `SSL_CERT_DIR` to hint OpenSSL
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
export SSL_CERT_DIR=/etc/ssl/certs
```

### Alternative Solution

You can also resolve this issue by creating a shortcut from the `/etc/ssl` folder to the root directory using the following command:

```bash
sudo ln -s /etc/ssl /
```

This approach simplifies the configuration by allowing OpenSSL to locate the necessary certificates without additional setup.

0 comments on commit 640e02d

Please sign in to comment.