Class ManagementInterfaceConfiguration

    • Field Detail

      • host

        @ConfigItem
        public Optional<String> 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.
      • handle100ContinueAutomatically

        @ConfigItem(defaultValue="false",
                    name="handle-100-continue-automatically")
        public boolean handle100ContinueAutomatically
        When set to true, the HTTP server automatically sends `100 CONTINUE` response when the request expects it (with the `Expect: 100-Continue` header).
      • body

        public BodyConfig body
        Request body related settings
      • acceptBacklog

        @ConfigItem(defaultValue="-1")
        public int acceptBacklog
        The accept backlog, this is how many connections can be waiting to be accepted before connections start being rejected
      • domainSocketEnabled

        @ConfigItem
        public boolean domainSocketEnabled
        Enable listening to host:port
    • Constructor Detail

      • ManagementInterfaceConfiguration

        public ManagementInterfaceConfiguration()
    • Method Detail

      • determinePort

        public int determinePort​(LaunchMode launchMode)