From 640e02d5fb86676d026345416db3f9dc392cedeb Mon Sep 17 00:00:00 2001 From: Naufal Anshor A Date: Mon, 23 Dec 2024 10:58:14 +0700 Subject: [PATCH] docs: add alternative solution for TLS/SSL issues using symbolic link --- docs/known-issues.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/known-issues.md b/docs/known-issues.md index ba7c9421b..bdb873c93 100644 --- a/docs/known-issues.md +++ b/docs/known-issues.md @@ -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. \ No newline at end of file