This commit is contained in:
2025-11-04 16:45:54 -05:00
parent e19fad2baa
commit 2ee65b8dad
25 changed files with 175 additions and 85 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ builder.WebHost.ConfigureKestrel(options =>
{
// Port 6000: HTTP/2 for gRPC
options.ListenLocalhost(6000, o => o.Protocols = HttpProtocols.Http2);
// Port 6001: HTTP/1.1 for REST API
// Port 6001: HTTP/1.1 for HTTP API
options.ListenLocalhost(6001, o => o.Protocols = HttpProtocols.Http1);
});