node-cryptonote-pool
node-cryptonote-pool copied to clipboard
API only opens one port
When pool begins, API only opens port 8117. I have SSL bound to port 8119, the config is set up correctly, certificates in their proper place, etc. But the API is only opening on port 8117.
"ssl": true, "sslport": 8119, "sslcert": "/path/to/cert.pem", "sslkey": "/path/to/privkey.pem", "sslca": "/path/to/chain.pem",
I have set the
var api = "https://domain.com:8119"
as well, but I don't think that's the issue, since I only see the API opening on port 8117 anyways. Site works when var api = http://domain.com:8117, but not when it's var api = "https://domain.com:8119". Any ideas? Driving me crazy as every browser requires me to enable mixed content to view stats, lol
Did you ever figure this out? I have the same problem.