From aea83f4282d83b7f1ac134bdecc3173f9003a9f9 Mon Sep 17 00:00:00 2001 From: skeletor Date: Fri, 29 Jan 2021 23:07:44 -0500 Subject: [PATCH] Update README.md --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a6a81a9..c58516b 100644 --- a/README.md +++ b/README.md @@ -33,5 +33,18 @@ After your port is set to one that is compatible, create a new A record for a su Finally, create a new page rule under the Page Rules tab in Cloudflare and disable SSL for the subdomain you created above. You will now be able to connect using secure websockets using the following example url, where I created an A record for the subdomain `ws` and I set my `ws.nitro.port` to 2096: `wss://ws.example.com:2096` +## FAQS ## +**I am getting the error `Unable to load ssl: File does not contain valid private key: ssl\privkey.pem`** + +Make sure your private key is in PKCS#8 format. You can convert it to PKCS8 format with the following command: +``` +openssl pkcs8 -topk8 -nocrypt -in yourkey.pem -out yournewkey.pem +``` + + +**I am getting disconnected from the client with no error logs** + +Make sure your sso ticket is valid and that you didn't do an IP ban before configuring the `ws.nitro.ip.header` if you're behind a proxy. + ## License ## -This plugin is released under the GNU GPLv3 \ No newline at end of file +This plugin is released under the GNU GPLv3