Interface OriginalUrlExtractorArgs

interface OriginalUrlExtractorArgs {
    fixedBaseUrl?: string;
    identifierStrategy: IdentifierStrategy;
    includeQueryString?: boolean;
}

Properties

fixedBaseUrl?: string

Forces the server to always assume the host header to be the value of the defined base URL. Useful for debugging when you're trying to access the server both internally and externally.

identifierStrategy: IdentifierStrategy

The IdentifierStrategy to use for checking the scope of the request

includeQueryString?: boolean

Specify whether the OriginalUrlExtractor should include the request query string.