Fix typo in SECURITY.md

This commit is contained in:
Sudharaka Palamakumbura 2017-10-13 19:35:24 -07:00 committed by Eric Gribkoff
parent 9c817e5bb0
commit b2bcaccb34
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ No standard Java release has built-in support for ALPN today ([there is a tracki
java -Xbootclasspath/p:/path/to/jetty/alpn/extension.jar ...
```
Note that you must use the [release of the Jetty-ALPN jar](http://www.eclipse.org/jetty/documentation/current/alpn-chapter.html#alpn-versions) specific to the version of Java you are using. However, you can use the JVM agent [Jeety-ALPN-Agent](https://github.com/jetty-project/jetty-alpn-agent) to load the correct Jetty `alpn-boot` jar file for the current Java version. To do this, instead of adding an `Xbootclasspath` option, add a `javaagent` JVM option referencing the path to the Jetty `alpn-agent` jar.
Note that you must use the [release of the Jetty-ALPN jar](http://www.eclipse.org/jetty/documentation/current/alpn-chapter.html#alpn-versions) specific to the version of Java you are using. However, you can use the JVM agent [Jetty-ALPN-Agent](https://github.com/jetty-project/jetty-alpn-agent) to load the correct Jetty `alpn-boot` jar file for the current Java version. To do this, instead of adding an `Xbootclasspath` option, add a `javaagent` JVM option referencing the path to the Jetty `alpn-agent` jar.
```sh
java -javaagent:/path/to/jetty-alpn-agent.jar ...