> -----Original Message----- > From: Robert Leach [mailto:[EMAIL PROTECTED]] > I am trying to proxy VNC through an apache webserver > running mod_proxy as > the machine where VNC is running is not accessable by the internet. > > I have proxy'ied 5801 and am able to get the login screen fine. I > proxy'ied 5901 and get RFB 003.003 but when I put the > password in and hit > connect it just sits there. Is it possible to proxy it at > all? Here is my > apache virt host section to proxy.
If the same machine is running both apache and vncserver, then there is no need to do anything whith the http ports (5800 range) of the vncserver, use apache for it. If on a M$WIndows machine, get a unix distribution and extract the files 'vncviewer.jar' and 'index.vnc' from that one. On unix machines, just use the local distro, it's in the .../vnc/classes/ directory. In the apache http area, create a directory that is served at http://machine/vnc and put the files in there. Then copy index.vnc to index.html (or your default file name) and fill out the variables in there according to the comment at the top of the file. Fill out all variables to reasonable values. The mentioned port is the vncviewer port (5900 range) and for the height of the java applet, add 30 points for the top buttons. (or get the html source from your browser with the current runnign session. Success, CBee > > > <VirtualHost 172.16.194.13:5801> > ProxyRequests On > ProxyPass / http://beta.ecostech.com:5801/ > ProxyPassReverse / http://beta.ecostech.com:5801/ > </VirtualHost> This is only serving the apples > <VirtualHost 172.16.194.13:5901> > ProxyRequests On > ProxyPass / http://beta.ecostech.com:5901/ > ProxyPassReverse / http://beta.ecostech.com:5901/ > </VirtualHost> This is doing the real vnc _______________________________________________ VNC-List mailing list [EMAIL PROTECTED] http://www.realvnc.com/mailman/listinfo/vnc-list
