Compare commits

...

1 Commits

Author SHA1 Message Date
e2f686310d Add README 2021-08-20 12:17:32 -04:00
4 changed files with 53 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
README.html
venv

View File

@ -1,4 +1,4 @@
FROM python:3-alpine
FROM docker.io/library/python:3-alpine
WORKDIR /usr/src/app
RUN pip install --no-cache-dir websockets
COPY unwebsockify.py ./

49
README.md Normal file
View File

@ -0,0 +1,49 @@
Unwebsockify is a TCP to WebSocket proxy/bridge. It accepts a plain
TCP connection and connects to a WebSocket server, effectively adding
WS support to a client that does not natively support it. It is
essentially the opposite of
[websockify](https://github.com/novnc/websockify).
Note that this only handles simple byte streams of data, with no
support for conveying WebSockets message framing back to the client.
In most cases, **specifying the WebSockets subprotocol (via
`--subproto`) is necessary**, because the server expects it to match
some particular string.
# Install dependencies
Using a virtual environment:
python3 -m venv venv
venv/bin/pip install -r requirements.txt
venv/bin/python unwebsockify.py -h
Or use docker (or replace `docker` with `podman`):
docker build -t unwebsockify .
docker run -p 13232:13232 unwebsockify -h
# Usage
usage: unwebsockify.py [-h] [--port PORT] [--listen ADDR] [--subproto SUBPROTO] URL
positional arguments:
URL WebSocket URL (ws://.. or wss://..)
optional arguments:
-h, --help show this help message and exit
--port PORT, -p PORT TCP listen port
--listen ADDR, -l ADDR TCP listen address
--subproto SUBPROTO, -s SUBPROTO WebSocket subprotocol
# Example
Eclipse Mosquitto supports WebSockets on the server side, but not on
the client side (for bridging). To bridge two MQTT instances via
websockets, run unwebsockify on the client:
venv/bin/python unwebsockify.py --port 13232 --subproto mqtt wss://server/
and configure and run the MQTT client instance with e.g.
address 127.0.0.1:13232

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
websockets