configureHTTPServerPipeline(position:withPipeliningAssistance:withServerUpgrade:withErrorHandling:withOutboundHeaderValidation:withEncoderConfiguration:)

    Configure a ChannelPipeline for use as a HTTP server.

    HTTPPipelineSetup.swift:317
    func configureHTTPServerPipeline(position: ChannelPipeline.Position = .last, withPipeliningAssistance pipelining: Bool = true, withServerUpgrade upgrade: NIOHTTPServerUpgradeConfiguration? = nil, withErrorHandling errorHandling: Bool = true, withOutboundHeaderValidation headerValidation: Bool = true, withEncoderConfiguration encoderConfiguration: HTTPResponseEncoder.Configuration = .init()) -> EventLoopFuture<Void>

    Parameters

    position

    Where in the pipeline to add the HTTP server handlers, defaults to .last.

    pipelining

    Whether to provide assistance handling HTTP clients that pipeline their requests. Defaults to true. If false, users will need to handle clients that pipeline themselves.

    upgrade

    Whether to add a HTTPServerUpgradeHandler to the pipeline, configured for HTTP upgrade. Defaults to nil, which will not add the handler to the pipeline. If provided should be a tuple of an array of HTTPServerProtocolUpgrader and the upgrade completion handler. See the documentation on HTTPServerUpgradeHandler for more details.

    errorHandling

    Whether to provide assistance handling protocol errors (e.g. failure to parse the HTTP request) by sending 400 errors. Defaults to true.

    headerValidation

    Whether to validate outbound request headers to confirm that they meet spec compliance. Defaults to true.

    encoderConfiguration

    The configuration for the HTTPResponseEncoder.

    Returns

    An EventLoopFuture that will fire when the pipeline is configured.

    This function knows how to set up all first-party HTTP channel handlers appropriately for server use. It supports the following features:

    1. Providing assistance handling clients that pipeline HTTP requests, using the HTTPServerPipelineHandler.

    2. Supporting HTTP upgrade, using the HTTPServerUpgradeHandler.

    3. Providing assistance handling protocol errors.

    4. Validating outbound header fields to protect against response splitting attacks.

    This method will likely be extended in future with more support for other first-party features.

    Other members in extension

    Instance members