You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: go/vt/servenv/grpc_server.go
+4-1
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,9 @@ var (
67
67
// GRPCCA is the CA to use if TLS is enabled
68
68
GRPCCA=flag.String("grpc_ca", "", "server CA to use for gRPC connections, requires TLS, and enforces client certificate check")
69
69
70
+
// GRPCCRL is the CRL (Certificate Revocation List) to use if TLS is enabled
71
+
GRPCCRL=flag.String("grpc_crl", "", "path to a certificate revocation list in PEM format, client certificates will be further verified against this file during TLS handshake")
72
+
70
73
GRPCEnableOptionalTLS=flag.Bool("grpc_enable_optional_tls", false, "enable optional TLS mode when a server accepts both TLS and plain-text connections on the same port")
71
74
72
75
// GRPCServerCA if specified will combine server cert and server CA
0 commit comments