You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We were updating SERVER_PROTOCOL which is not used in IIS for HTTP/HTTPS, but rather the version of HTTP. Instead, we need to update the HTTPS server variable.
Copy file name to clipboardexpand all lines: src/Microsoft.AspNetCore.SystemWebAdapters/Adapters/ProxyHeaderModule.Framework.cs
+9-7
Original file line number
Diff line number
Diff line change
@@ -9,12 +9,15 @@
9
9
10
10
namespaceMicrosoft.AspNetCore.SystemWebAdapters;
11
11
12
+
/// <summary>
13
+
/// Updates server and request variables based on proxy headers. See https://docs.microsoft.com/en-us/iis/web-dev-reference/server-variables for reference on what server variables should be used.
0 commit comments