-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Closed
Labels
DoneThis issue has been fixedThis issue has been fixedarea-commandlinetoolsIncludes: Command line tools, dotnet-dev-certs, dotnet-user-jwts, and OpenAPIIncludes: Command line tools, dotnet-dev-certs, dotnet-user-jwts, and OpenAPIarea-networkingIncludes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractionsIncludes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractionsbugThis issue describes a behavior which is not expected - a bug.This issue describes a behavior which is not expected - a bug.feature-kestrel
Milestone
Description
Describe the bug
The browser is not happy with the cipher used for HTTP2 (i guess)
ERR_SPDY_INADEQUATE_TRANSPORT_SECURITY and equivalent in chrome
Bad Workaround
only for firefox
i managed to go in about:config and disable weak cypher check this actually has an effect
is there a simple way to completely disable HTTP2 via a Kestrel IOptions<> ?
To Reproduce
Steps to reproduce the behavior:
- uninstalled ALL sdk
- removed folder from program files/user/appdata/temp
- install sdk
2.2.105and3.0.0-preview3from https://dot.net - version of ASP.NET Core : the one shipped with preview3
dotnet new webapi -n foo- comment out
UseHsts - comment out
UseHttpsRedirection() dotnet run --project foo.csproj- hit the
httpendpoint => works - hit the
httpsendpoint => rejected
Expected behavior
i tried to :
dotnet dev-certs http --cleandotnet dev-certs http --trust- delete
.vs/ - change
launchSettings.jsonto anything else - removed
UseHttpsRedirection() - removed
UseHsts() - not working for IP / dns in the browser
pretty sure all i did was update Vs2019, it was workign 2 weeks ago on the same SDK (or the latest win10 insider - fast ring update)
>dotnet --version
3.0.100-preview3-010431
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0-preview3-19153-02" />
</ItemGroup>
</Project>
schuettecarsten and Hammerstad
Metadata
Metadata
Assignees
Labels
DoneThis issue has been fixedThis issue has been fixedarea-commandlinetoolsIncludes: Command line tools, dotnet-dev-certs, dotnet-user-jwts, and OpenAPIIncludes: Command line tools, dotnet-dev-certs, dotnet-user-jwts, and OpenAPIarea-networkingIncludes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractionsIncludes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractionsbugThis issue describes a behavior which is not expected - a bug.This issue describes a behavior which is not expected - a bug.feature-kestrel