proxyee icon indicating copy to clipboard operation
proxyee copied to clipboard

Client requested protocol TLSv1 is not enabled or supported in server context

Open calm04061 opened this issue 1 year ago • 0 comments

HttpProxyServerConfig config = new HttpProxyServerConfig();
//开启HTTPS支持
//不开启的话HTTPS不会被拦截,而是直接转发原始报文
config.setHandleSsl(true);

简单配置开启ssl,出现不支持TLSv1,请问这个需要怎么配置


HttpProxyServerConfig config = new HttpProxyServerConfig();
//Enable HTTPS support
//If it is not enabled, HTTPS will not be intercepted, but the original message will be forwarded directly.
config.setHandleSsl(true);

After simple configuration to enable ssl, TLSv1 is not supported. How to configure this?

calm04061 avatar Apr 22 '24 14:04 calm04061