I have a separate apache server that i’m using to reverse in https the opennebula FE;
all work well, but when i try to open vm consoles under novnc or spice, nothing appear.
ATM the apache server configuration reverse proxying OpennebulaFE is:
<VirtualHost 192.168.1.40:443>
ServerName myserver
ProxyPreserveHost Off
RewriteEngine on
RewriteRule ^(.*)+(nebula)$ %{REQUEST_URI}/ [R=301,L]
SSLEngine on
SSLCertificateFile /etc/pki/certs/xxxx.crt
SSLCertificateKeyFile /etc/pki/private/xxxxx.key
SSLCertificateChainFile /etc/pki/certs/xxxxxxxx.pem
<Location /nebula>
ProxyPass http://192.168.1.202:9869
ProxyPassReverse http://192.168.1.202:9869
I read about ws://xxxxx/:29876 websockify settings… but nothing worked for me.
servers:
(192.168.1.40 - apache reverseproxy)—
(192.168.1.202 - opennebulaFE -sunstone)—
(192.168.1.201 - opennebula node kvm-hypervisor)
Any ideas ??
Thanks
Igor