Skip to content

Commit

Permalink
Updates from review.
Browse files Browse the repository at this point in the history
Signed-off-by: Simone Bordet <[email protected]>
  • Loading branch information
sbordet committed Nov 28, 2024
1 parent d4e38d7 commit 46dbbcb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,9 @@ include::{jetty-home}/modules/http3.mod[tags=documentation]

The `http-config` module provides HTTP configuration parameters that describe the HTTP semantic, and therefore do not depend on a specific HTTP protocol version.

This module creates an instance of `HttpConfiguration` for clear-text HTTP.
For secure HTTP, the `ssl` module creates a copy of this `HttpConfiguration`.

The module properties are:

----
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?xml version="1.0"?><!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "https://jetty.org/configure_10_0.dtd">

<!--
This is the HTTP configuration for clear-text HTTP.
For secure HTTP, a copy of this configuration is made
in jetty-ssl.xml.
-->
<Configure id="httpConfig" class="org.eclipse.jetty.server.HttpConfiguration">
<Set name="secureScheme" property="jetty.httpConfig.secureScheme" />
<Set name="securePort" property="jetty.httpConfig.securePort" />
Expand Down

0 comments on commit 46dbbcb

Please sign in to comment.