gpt4 book ai didi

c# - 如何在 gRPC 服务器上关闭 HTTPS

转载 作者:行者123 更新时间:2023-12-04 11:45:58 25 4
gpt4 key购买 nike

如何在 gRPC 服务器上关闭 HTTPS?有什么选择吗?

最佳答案

尽管这是一个老问题,但我最近不得不自己做这件事,下面是我是如何做到的,基于 Visual Studio 的 ASP.NET Core 模板:
首先,您必须将 kestrel 网络服务器配置为对 HTTP 使用 HTTP2 协议(protocol)(通常在 Program.cs 中):

public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.ConfigureKestrel(options =>
options.ConfigureEndpointDefaults(defaults =>
defaults.Protocols = HttpProtocols.Http2));
webBuilder.UseStartup<Startup>();
});
现在服务器应该能够处理所有调用,无论使用 HTTP 还是 HTTPS。
在你这样做之后,你只需要在你第一次调用 gRPC 服务器之前告诉客户端允许使用没有 HTTPS 的 HTTP2:
AppContext.SetSwitch("System.Net.Http.SocketsHttpHandler.Http2UnencryptedSupport", true);
var client = new GrpcTest.GrpcTestClient(GrpcChannel.ForAddress("http://localhost:5000"));
资料来源:
  • https://docs.microsoft.com/en-us/aspnet/core/grpc/troubleshoot?view=aspnetcore-5.0#unable-to-start-aspnet-core-grpc-app-on-macos
  • https://docs.microsoft.com/en-us/aspnet/core/grpc/troubleshoot?view=aspnetcore-5.0#call-insecure-grpc-services-with-net-core-client
  • 关于c# - 如何在 gRPC 服务器上关闭 HTTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57602807/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com