diff --git a/charts/opserver/Chart.yaml b/charts/opserver/Chart.yaml index e20f2c55..1c282226 100644 --- a/charts/opserver/Chart.yaml +++ b/charts/opserver/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.7 +version: 1.0.8 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/src/Opserver.Web/Controllers/AuthController.OIDC.cs b/src/Opserver.Web/Controllers/AuthController.OIDC.cs index ea656ffe..d9e008fb 100644 --- a/src/Opserver.Web/Controllers/AuthController.OIDC.cs +++ b/src/Opserver.Web/Controllers/AuthController.OIDC.cs @@ -216,7 +216,7 @@ private IActionResult RedirectToProvider(string returnUrl) }); var oidcSettings = (OIDCSecuritySettings) Current.Security.Settings; - var scheme = (oidcSettings.UseHttpsForRedirects ? "https" : Request.Scheme); + var scheme = "https"; //(oidcSettings.UseHttpsForRedirects ? "https" : Request.Scheme); var redirectUri = Url.Action( nameof(OAuthCallback), ControllerContext.ActionDescriptor.ControllerName,