Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added FAQ for missing SSL cert #1753

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Choose a reason for hiding this comment

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

I really appreciate this FAQ item, as it probably saved me hours of looking it up. Perhaps this note would be better stored in the wiki / known issues?

Copy link
Author

Choose a reason for hiding this comment

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

Just created here: debauchee/barrier-wiki#10

> - `mv Barrier.pem /mnt/c/Users/<username>/AppData/Local/Barrier/SSL/`
1 change: 1 addition & 0 deletions doc/newsfragments/missing-ssl-cert-faq.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added FAQ for missing SSL cert