From fc3975b0b4b910b7c1955444dd7fbb068c489e8e Mon Sep 17 00:00:00 2001 From: Khanh Nguyen Date: Tue, 23 Aug 2022 01:09:21 +0800 Subject: [PATCH] Added FAQ for missing SSL cert --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index d04810db..6cf489ef 100644 --- a/README.md +++ b/README.md @@ -146,3 +146,9 @@ __Q: Is it possible to use Barrier on Mac OS X / OS X versions prior to 10.12?__ > - *(see [#109](https://github.com/debauchee/barrier/issues/109) and [#1251](https://github.com/debauchee/barrier/issues/1251) for status or to volunteer your talents)* > > The complete list of open issues can be found in the ['Issues' tab on GitHub](https://github.com/debauchee/barrier/issues?q=is%3Aissue+is%3Aopen). Help is always appreciated. + +**Q: Error in Windows: `ssl certificate doesn't exist: C:\Users\\AppData\Local\Barrier\SSL\Barrier.pem`** + +> A: Use WSL2 to install `openssl` and generate SSL key +> - `openssl req -x509 -nodes -days 9999 -subj /CN=Barrier -newkey rsa:4096 -keyout Barrier.pem -out Barrier.pem` +> - `mv Barrier.pem /mnt/c/Users//AppData/Local/Barrier/SSL/`