Using noVNC in the current version of Abiquo
...
Replacing TightVNC applet with noVNC in the client-premium webapp
Download the noVNC distribution package from: http://kanaka.github.com/noVNC
Note that this is the same package we used for the websockify
...
Code Block |
---|
# cp -r kanaka-noVNC-c2b1409 /opt/abiquo/tomcat/webapps/client-premium/ # cd /opt/abiquo/tomcat/webapps/client-premium/ # mv tightvnc tightvnc.old # mv kanaka-noVNC-c2b1409 tightvnc |
Download the tarball with the required files for the next steps from http://download.abiquo.com/extras/abiquo-novnc.tar.gz.
We will use the vnc_auto.html file from noVNC but with some changes. Download Place the attached tightvnc.html file and place it under /opt/abiquo/tomcat/webapps/client-premium/tightvnc/. Now you will need to edit this file to suit your environment. Edit the file and change the following values to contain the websockify public IP and port the proxy will be listening on:
host = "8.8.8.100";
port = 41337;
You also need to download the attached Also place .js files and place them under /opt/abiquo/tomcat/webapps/client-premium/tightvnc/include.
...