Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2015-11-11 23:48:04 +0000
committerGreg Wilkins2015-11-11 23:48:04 +0000
commitff0d1b4c140af3febb56aeac682d38b51b46416f (patch)
treedffc59eeab52b270f7ec5ccd9eccad42519d4afb /jetty-unixsocket
parenta94e6bf0c076287de88e7c229dff81d14c919969 (diff)
downloadorg.eclipse.jetty.project-ff0d1b4c140af3febb56aeac682d38b51b46416f.tar.gz
org.eclipse.jetty.project-ff0d1b4c140af3febb56aeac682d38b51b46416f.tar.xz
org.eclipse.jetty.project-ff0d1b4c140af3febb56aeac682d38b51b46416f.zip
481903 Module Descriptions
Diffstat (limited to 'jetty-unixsocket')
-rw-r--r--jetty-unixsocket/src/main/config/modules/unixsocket-forwarded.mod3
-rw-r--r--jetty-unixsocket/src/main/config/modules/unixsocket-http.mod2
-rw-r--r--jetty-unixsocket/src/main/config/modules/unixsocket-proxy-protocol.mod3
-rw-r--r--jetty-unixsocket/src/main/config/modules/unixsocket.mod1
4 files changed, 5 insertions, 4 deletions
diff --git a/jetty-unixsocket/src/main/config/modules/unixsocket-forwarded.mod b/jetty-unixsocket/src/main/config/modules/unixsocket-forwarded.mod
index 3008ac45e5..80d1999588 100644
--- a/jetty-unixsocket/src/main/config/modules/unixsocket-forwarded.mod
+++ b/jetty-unixsocket/src/main/config/modules/unixsocket-forwarded.mod
@@ -1,7 +1,8 @@
[description]
Adds a forwarded request customizer to the HTTP configuration used
by the Unix Domain Socket connector, for use when behind a proxy operating
-in HTTP mode that adds forwarded-for style HTTP headers
+in HTTP mode that adds forwarded-for style HTTP headers. Typically this
+is an alternate to the Proxy Protocol used mostly for TCP mode.
[depend]
unixsocket-http
diff --git a/jetty-unixsocket/src/main/config/modules/unixsocket-http.mod b/jetty-unixsocket/src/main/config/modules/unixsocket-http.mod
index 4929795abb..05c46bee79 100644
--- a/jetty-unixsocket/src/main/config/modules/unixsocket-http.mod
+++ b/jetty-unixsocket/src/main/config/modules/unixsocket-http.mod
@@ -1,5 +1,5 @@
[description]
-Adds a HTTP connection factory to the Unix Domain Socket connector.
+Adds a HTTP protocol support to the Unix Domain Socket connector.
It should be used when a proxy is forwarding either HTTP or decrypted
HTTPS traffic to the connector and may be used with the
unix-socket-http2c modules to upgrade to HTTP/2.
diff --git a/jetty-unixsocket/src/main/config/modules/unixsocket-proxy-protocol.mod b/jetty-unixsocket/src/main/config/modules/unixsocket-proxy-protocol.mod
index 867231af44..11184d3947 100644
--- a/jetty-unixsocket/src/main/config/modules/unixsocket-proxy-protocol.mod
+++ b/jetty-unixsocket/src/main/config/modules/unixsocket-proxy-protocol.mod
@@ -5,7 +5,8 @@ This allows information about the proxied connection to be
efficiently forwarded as the connection is accepted.
Both V1 and V2 versions of the protocol are supported and any
SSL properties may be interpreted by the unixsocket-secure
-module to indicate secure HTTPS traffic.
+module to indicate secure HTTPS traffic. Typically this
+is an alternate to the forwarded module.
[depend]
unixsocket
diff --git a/jetty-unixsocket/src/main/config/modules/unixsocket.mod b/jetty-unixsocket/src/main/config/modules/unixsocket.mod
index bf76c3aa5b..c27ec9d2f4 100644
--- a/jetty-unixsocket/src/main/config/modules/unixsocket.mod
+++ b/jetty-unixsocket/src/main/config/modules/unixsocket.mod
@@ -4,7 +4,6 @@ requests from a local proxy and/or SSL offloader (eg haproxy) in either
HTTP or TCP mode. Unix Domain Sockets are more efficient than
localhost TCP/IP connections as they reduce data copies, avoid
needless fragmentation and have better dispatch behaviours.
-
When enabled with corresponding support modules, the connector can
accept HTTP, HTTPS or HTTP2C traffic.

Back to the top