Info
Version: | 1.0.1 |
Author(s): | Progress Software Corporation |
Last Update: | Tuesday, March 29, 2022 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/Sitefinity/FrontDoorHostRewriteModule |
NuGet Url: | https://www.nuget.org/packages/FrontDoorHostRewriteModule |
Install
Install-Package FrontDoorHostRewriteModule
dotnet add package FrontDoorHostRewriteModule
paket add FrontDoorHostRewriteModule
FrontDoorHostRewriteModule Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
Please use Progress.Sitefinity.Cloud.FrontDoorHostRewriteModule package that is a replacement of FrontDoorHostRewriteModule package. FrontDoorHostRewriteModule replaces the Host header with the X-Forwarded-Host on IIS of App Service via a native C++ module. NOTE: There is a popular approach to replace the HOST header with the value of X-Forwarded-Host header by unlocking the Host and X-Forwarded-Host headers, so they can be rewritten using rewrite rules. Once the request reaches the App Service, the value of the HOST header is set to the value of the X-Forwarded-Host header.
However, this approach has a pitfall. If there are other rewrite rules executed after the rule for rewriting the HOST header, they do not respect the new value of the HOST header. Using the native IIS module ensures that the HOST header has taken the value of the X-Forwarded-Host header before the rewrite module steps in.