-
so I guess my question now would be the cert and key would be certs/cert.cert and keys/key.key with root of / even though they are in the home/user/ssl/certs and home/user/ssl/keys folders?
or would it be like
"root":"/",
"cert":"home/user/ssl/certs/cert.cert",
"key":"home/user/ssl/keys/key.key",-
also when setting up the reverse proxy for it so I can have https://messenger.mysite.net I get a proxy error, though I know I have it set properly. I think if I can get the reverse proxy working properly I will be able to get it working as when I goto https://mysite.net:5443 I get the cert error because the cert is for messenger and not for mysite. So it is finding the right certs.
Edit: I can get it to work by going directly to the port, but would eventually love to be able to have it use the reverse proxy.
-
In case when certifictes root folder in home/user/ssl/, then config should look like this:
"root":"home/user/ssl/", "cert":"certs/cert.cert", "key":"keys/key.key",
-
About proxy:
We are using Primus as real-time framework for messenger. You may try to find information about how to configure reverse proxy for it here https://github.com/primus/primus
-