mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-25 23:55:57 +03:00
[GH-ISSUE #557] https breaking vnc #418
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @masau on GitHub (May 19, 2015).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/557
I can't get vnc over https working. Running on Arch Linux.
My nginx server config:
cert.pem location
webvirtmgr-console output
When I open a console in the browser, I just get "Server disconnected (code: 1006)"
When I disable ssl in nginx vnc works fine.
@brenard commented on GitHub (May 24, 2015):
Hi,
Your certificate seam to not be recognized by your local installationof cacertificate. Witch kind of certificate are you using ? If it's issued by an valid CA, I mean you have to put CA certificate chain in your cert.pem file according to the documentation :
https://github.com/retspen/webvirtmgr/wiki/Console#encrypted-and-unencrypted-connections
https://docs.python.org/dev/library/ssl.html#certificate-chains
Futhermore, could you say us witch is your certificate's subject. In this question (http://stackoverflow.com/questions/29243042/unable-to-get-ssl-working-on-tornado), the same error is return by python because the user generated his certificate with the IP address instead of FQDN of his host as subject.
@masau commented on GitHub (May 25, 2015):
I had been using a self-signed certificate. I finally got around to setting up a self-signed CA and adding it to my browser. It's working w/ a cert signed by my CA server now.
@brenard commented on GitHub (May 26, 2015):
Ok, it's a better way. Could you please close this issue ?