
io.quarkus.vertx.http.runtime.HttpConfiguration.jdp Maven / Gradle / Ivy
#
#Wed Jun 21 11:12:51 CEST 2023
io.quarkus.vertx.http.runtime.HttpConfiguration.tcpCork=Enable tcp cork (linux native transport only)
io.quarkus.vertx.http.runtime.HttpConfiguration.filter=Additional HTTP configuration per path
io.quarkus.vertx.http.runtime.HttpConfiguration.http2=If this is true (the default) then HTTP/2 will be enabled.\n\nNote that for browsers to be able to use it HTTPS must be enabled,\nand you must be running on JDK11 or above, as JDK8 does not support\nALPN.
io.quarkus.vertx.http.runtime.HttpConfiguration.unhandledErrorContentTypeDefault=Provides a hint (optional) for the default content type of responses generated for\nthe errors not handled by the application.\n\nIf the client requested a supported content-type in request headers\n(e.g. "Accept\: application/json", "Accept\: text/html"),\nQuarkus will use that content type.\n
\nOtherwise, it will default to the content type configured here.\n
io.quarkus.vertx.http.runtime.HttpConfiguration.domainSocketEnabled=Enable listening to host\:port
io.quarkus.vertx.http.runtime.HttpConfiguration.encryptionKey=The encryption key that is used to store persistent logins (e.g. for form auth). Logins are stored in a persistent\ncookie that is encrypted with AES-256 using a key derived from a SHA-256 hash of the key that is provided here.\n\nIf no key is provided then an in-memory one will be generated, this will change on every restart though so it\nis not suitable for production environments. This must be more than 16 characters long for security reasons
io.quarkus.vertx.http.runtime.HttpConfiguration.port=The HTTP port
io.quarkus.vertx.http.runtime.HttpConfiguration.idleTimeout=Http connection idle timeout
io.quarkus.vertx.http.runtime.HttpConfiguration.readTimeout=Http connection read timeout for blocking IO. This is the maximum amount of time\na thread will wait for data, before an IOException will be thrown and the connection\nclosed.
io.quarkus.vertx.http.runtime.HttpConfiguration.header=Additional HTTP Headers always sent in the response
io.quarkus.vertx.http.runtime.HttpConfiguration.initialWindowSize=Set the SETTINGS_INITIAL_WINDOW_SIZE HTTP/2 setting.\nIndicates the sender's initial window size (in octets) for stream-level flow control.\nThe initial value is {@code 2^16-1} (65,535) octets.
io.quarkus.vertx.http.runtime.HttpConfiguration.sslPort=The HTTPS port
io.quarkus.vertx.http.runtime.HttpConfiguration.handle100ContinueAutomatically=When set to {@code true}, the HTTP server automatically sends `100 CONTINUE`\nresponse when the request expects it (with the `Expect\: 100-Continue` header).
io.quarkus.vertx.http.runtime.HttpConfiguration.domainSocket=Path to a unix domain socket
io.quarkus.vertx.http.runtime.HttpConfiguration.ioThreads=The number if IO threads used to perform IO. This will be automatically set to a reasonable value based on\nthe number of CPU cores if it is not provided. If this is set to a higher value than the number of Vert.x event\nloops then it will be capped at the number of event loops.\n\nIn general this should be controlled by setting quarkus.vertx.event-loops-pool-size, this setting should only\nbe used if you want to limit the number of HTTP io threads to a smaller number than the total number of IO threads.
io.quarkus.vertx.http.runtime.HttpConfiguration.hostEnabled=Enable listening to host\:port
io.quarkus.vertx.http.runtime.HttpConfiguration.host=The HTTP host\n\nIn dev/test mode this defaults to localhost, in prod mode this defaults to 0.0.0.0\n\nDefaulting to 0.0.0.0 makes it easier to deploy Quarkus to container, however it\nis not suitable for dev/test mode as other people on the network can connect to your\ndevelopment machine.
io.quarkus.vertx.http.runtime.HttpConfiguration.corsEnabled=Enable the CORS filter.
io.quarkus.vertx.http.runtime.HttpConfiguration.acceptBacklog=The accept backlog, this is how many connections can be waiting to be accepted before connections start being rejected
io.quarkus.vertx.http.runtime.HttpConfiguration.tcpFastOpen=Enable tcp fast open (linux native transport only)
io.quarkus.vertx.http.runtime.HttpConfiguration.http2PushEnabled=Enables or Disable the HTTP/2 Push feature.\nThis setting can be used to disable server push. The server will not send a {@code PUSH_PROMISE} frame if it\nreceives this parameter set to @{code false}.
io.quarkus.vertx.http.runtime.HttpConfiguration.testPort=The HTTP port used to run tests
io.quarkus.vertx.http.runtime.HttpConfiguration.tcpQuickAck=Enable tcp quick ack (linux native transport only)
io.quarkus.vertx.http.runtime.HttpConfiguration.soReusePort=Enable socket reuse port (linux/macOs native transport only)
io.quarkus.vertx.http.runtime.HttpConfiguration.insecureRequests=If insecure (i.e. http rather than https) requests are allowed. If this is {@code enabled}\nthen http works as normal. {@code redirect} will still open the http port, but\nall requests will be redirected to the HTTPS port. {@code disabled} will prevent the HTTP\nport from opening at all.
io.quarkus.vertx.http.runtime.HttpConfiguration.sameSiteCookie=Configuration that allows setting the same site attributes for cookies.
io.quarkus.vertx.http.runtime.HttpConfiguration.testSslPort=The HTTPS port used to run tests
io.quarkus.vertx.http.runtime.HttpConfiguration.recordRequestStartTime=If this is true then the request start time will be recorded to enable logging of total request time.\n\nThis has a small performance penalty, so is disabled by default.
© 2015 - 2025 Weber Informatics LLC | Privacy Policy