Added FAQ for missing SSL cert

This commit is contained in:
Khanh Nguyen 2022-08-23 01:09:21 +08:00 committed by GitHub
parent 653e4badeb
commit fc3975b0b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -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\<username>\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/<username>/AppData/Local/Barrier/SSL/`