From bb31612ebe49d5b3421586e630492632678b89e9 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Sun, 12 Jan 2020 11:16:54 -0800 Subject: [PATCH] more doc --- test/compatibility/python/websockets/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/test/compatibility/python/websockets/README.md b/test/compatibility/python/websockets/README.md index ea33ecca..25de1be0 100644 --- a/test/compatibility/python/websockets/README.md +++ b/test/compatibility/python/websockets/README.md @@ -830,3 +830,17 @@ $ honcho start 15:29:59 system | nginx.1 stopped (rc=0) 15:29:59 system | websocket_server.1 stopped (rc=-15) ``` + +## Sending large files over SSL + +Running inside docker + +``` +$ make docker && make server_ssl +``` + +On the client + +``` +$ make ws_mbedtls && cp build/ws/ws /usr/local/bin/ws && ws send --verify_none wss://localhost:8766 /tmp/big_file +```