From e32df5ecc68c7c099896b6fc35f9eb57651db556 Mon Sep 17 00:00:00 2001 From: Trevor Hartman Date: Wed, 20 Jan 2016 14:52:25 -0700 Subject: [PATCH] Remove erroneous backslash on http/2 instructions --- jetty/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jetty/README.md b/jetty/README.md index d0acfc530..3a713afa0 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -87,7 +87,7 @@ Starting with version 9.3, Jetty comes with built-in support for HTTP/2. However ```Dockerfile FROM jetty -RUN java -jar \$JETTY_HOME/start.jar --add-to-startd=http2 --approve-all-licenses +RUN java -jar $JETTY_HOME/start.jar --add-to-startd=http2 --approve-all-licenses ``` This will add an `http2.ini` file to the `$JETTY_BASE/start.d` directory and download the required ALPN libraries into `$JETTY_BASE/lib/alpn`, allowing the use of HTTP/2. HTTP/2 connections should be made via the same port as normal HTTPS connections (container port 8443). If you would like to enable the `http2` module via `$JETTY_BASE/start.ini` instead, substitute `--add-to-start` in place of `--add-to-startd` in the `RUN` command above.