You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 29, 2020. It is now read-only.
Important Kumina is no longer actively maintaining this code, feel free to fork and publish yourself!
wsproxy: WebSockets-to-TCP proxy (for noVNC)
Description
wsproxy is an application that can be run from inetd, which allows noVNC
to connect to an unmodified libvncserver. Furthermore, it makes use of
the recently added support in noVNC for file names. The file name is
used to denote the port number. Say, you connect to:
ws://host:41337/25900
The wsproxy opens a connection to:
vnc://host:25900/
The address to which wsproxy connects, is the same as the address to
which the client connected (using getsockname()).
Configuration
wsproxy can be enabled by adding the following line to inetd.conf:
The two parameters of wsproxy denote the minimum and the maximum allowed
port numbers. This allows a single wsproxy instance to multiplex
connections to multiple VNC servers. When the minimum and the maximum
allowed port numbers are identical, wsproxy will connect to that port,
regardless of the file name provided.