Class ManagementInterfaceConfiguration
java.lang.Object
io.quarkus.vertx.http.runtime.management.ManagementInterfaceConfiguration
@ConfigRoot(phase=RUN_TIME,
name="management")
public class ManagementInterfaceConfiguration
extends Object
Configures the management interface.
Note that the management interface must be enabled using the
ManagementInterfaceBuildTimeConfig.enabled build-time property.-
Field Summary
FieldsModifier and TypeFieldDescriptionintThe accept backlog, this is how many connections can be waiting to be accepted before connections start being rejectedAuthentication configurationRequest body related settingsPath to a unix domain socketbooleanEnable listening to host:portAdditional HTTP configuration per pathbooleanWhen set totrue, the HTTP server automatically sends `100 CONTINUE` response when the request expects it (with the `Expect: 100-Continue` header).Additional HTTP Headers always sent in the responseThe HTTP host Defaults to 0.0.0.0 Defaulting to 0.0.0.0 makes it easier to deploy Quarkus to container, however it is not suitable for dev/test mode as other people on the network can connect to your development machine.booleanEnable listening to host:portHttp connection idle timeoutServer limits configurationintThe HTTP portThe SSL configintThe HTTP port -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
auth
Authentication configuration -
port
The HTTP port -
testPort
The HTTP port -
host
The HTTP host Defaults to 0.0.0.0 Defaulting to 0.0.0.0 makes it easier to deploy Quarkus to container, however it is not suitable for dev/test mode as other people on the network can connect to your development machine. -
hostEnabled
Enable listening to host:port -
ssl
The SSL config -
handle100ContinueAutomatically
@ConfigItem(defaultValue="false", name="handle-100-continue-automatically") public boolean handle100ContinueAutomaticallyWhen set totrue, the HTTP server automatically sends `100 CONTINUE` response when the request expects it (with the `Expect: 100-Continue` header). -
limits
Server limits configuration -
idleTimeout
Http connection idle timeout -
body
Request body related settings -
acceptBacklog
The accept backlog, this is how many connections can be waiting to be accepted before connections start being rejected -
domainSocket
Path to a unix domain socket -
domainSocketEnabled
Enable listening to host:port -
header
Additional HTTP Headers always sent in the response -
filter
Additional HTTP configuration per path -
proxy
-
-
Constructor Details
-
ManagementInterfaceConfiguration
public ManagementInterfaceConfiguration()
-
-
Method Details
-
determinePort
-