diff --git a/FastGithub.HttpServer/KestrelServerOptionsExtensions.cs b/FastGithub.HttpServer/KestrelServerOptionsExtensions.cs index 56bd15c..731f4bc 100644 --- a/FastGithub.HttpServer/KestrelServerOptionsExtensions.cs +++ b/FastGithub.HttpServer/KestrelServerOptionsExtensions.cs @@ -56,7 +56,11 @@ namespace FastGithub public static void ListenSshReverseProxy(this KestrelServerOptions kestrel) { var sshPort = ReverseProxyPort.Ssh; - kestrel.Listen(IPAddress.Loopback, sshPort, listen => listen.UseConnectionHandler()); + kestrel.Listen(IPAddress.Loopback, sshPort, listen => + { + listen.UseFlowAnalyze(); + listen.UseConnectionHandler(); + }); if (OperatingSystem.IsWindows()) {