Browse Source

Add README

master
Jim Paris 2 years ago
parent
commit
e2f686310d
4 changed files with 53 additions and 1 deletions
  1. +2
    -0
      .gitignore
  2. +1
    -1
      Dockerfile
  3. +49
    -0
      README.md
  4. +1
    -0
      requirements.txt

+ 2
- 0
.gitignore View File

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

+ 1
- 1
Dockerfile 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
- 0
README.md 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
- 0
requirements.txt View File

@@ -0,0 +1 @@
websockets

Loading…
Cancel
Save