monkeyWie / proxyee

HTTP proxy server,support HTTPS&websocket.MITM impl,intercept and tamper HTTPS traffic.
MIT License
1.5k stars 566 forks source link

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

Open calm04061 opened 2 months ago

calm04061 commented 2 months ago
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?