From 5847200baa5778162e84109ce1363ffd1bebe65a Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Mon, 6 May 2013 10:47:54 -0600 Subject: [PATCH] fixup documentation --- lib/Plack/App/Proxy/WebSocket.pm | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/lib/Plack/App/Proxy/WebSocket.pm b/lib/Plack/App/Proxy/WebSocket.pm index 770bae8..acbcdbc 100644 --- a/lib/Plack/App/Proxy/WebSocket.pm +++ b/lib/Plack/App/Proxy/WebSocket.pm @@ -28,22 +28,24 @@ use parent 'Plack::App::Proxy'; =head1 DESCRIPTION -This is a subclass of L that adds support for proxying -WebSocket connections. It works by looking for the C header, -forwarding the handshake to the remote back-end, and then buffering -full-duplex between the client and the remote. Regular HTTP requests are -handled by L as usual, though there are a few differences -related to the generation of headers for the back-end request; see -L for details. +This is a subclass of L that adds support for transparent +(i.e. reverse) proxying WebSocket connections. If your proxy is a forward +proxy that is to be explicitly configured in the system or browser, you may be +able to use L instead. + +This module works by looking for the C header, completing +the handshake with the remote, and then buffering full-duplex between the +client and the remote. Regular requests are handled by L +as usual, though there are a few differences related to the generation of +headers for the back-end request; see L for details. This module has no configuration options beyond what L requires or provides, so it may be an easy drop-in replacement. Read the -documentation of that module for advanced usage not covered here. Also note -that extra L server features are required in order for the WebSocket -proxying to work. The server must support C and C. -It is also highly recommended that you choose a C server, -though that isn't strictly required. L is one good choice for this -application. +documentation of that module for advanced usage not covered here. Also, you +must use a L server that supports C and C. +For performance reasons, you should also use a C server +(like L) and the L user +agent back-end (which is the default, so no extra configuration is needed). This module is B. I use it in development and it works swimmingly for me, but it is completely untested in production scenarios. -- 2.43.0