We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e26fa78 commit 11d94afCopy full SHA for 11d94af
service/proxy.go
@@ -304,8 +304,10 @@ func Start() {
304
go func() {
305
fmt.Printf("CasWAF gateway running on: https://127.0.0.1:%d\n", gatewayHttpsPort)
306
server := &http.Server{
307
- Addr: fmt.Sprintf(":%d", gatewayHttpsPort),
308
- TLSConfig: &tls.Config{},
+ Addr: fmt.Sprintf(":%d", gatewayHttpsPort),
+ TLSConfig: &tls.Config{
309
+ MinVersion: tls.VersionTLS12,
310
+ },
311
}
312
313
// start https server and set how to get certificate
0 commit comments