import ballerina/graphql;
import ballerina/http;
// An GraphQL listener can be configured to accept new connections that are
// secured via mutual SSL.
// The [`graphql:ListenerSecureSocket`](https://docs.central.ballerina.io/ballerina/graphql/latest/records/ListenerSecureSocket) record provides the SSL-related listener configurations.
listener graphql:Listener securedEP = new(9090,
secureSocket = {
key: {
certFile: "../resource/path/to/public.crt",
keyFile: "../resource/path/to/private.key"
},
// Enables mutual SSL.
mutualSsl: {
verifyClient: http:REQUIRE,
cert: "../resource/path/to/public.crt"
},
// Enables the preferred SSL protocol and its versions.
protocol: {
name: http:TLS,
versions: ["TLSv1.2", "TLSv1.1"]
},
// Configures the preferred ciphers.
ciphers: ["TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA"]
}
);
service /graphql on securedEP {
resource function get greeting() returns string {
return "Hello, World!";
}
}
Service - Mutual SSLBallerina supports mutual SSL, which is a certificate-based authentication
process in which two parties (the client and server) authenticate each other by
verifying the digital certificates. It ensures that both parties are assured
of each other’s identity. |
import ballerina/graphql;
import ballerina/http;
listener graphql:Listener securedEP = new(9090,
secureSocket = {
key: {
certFile: "../resource/path/to/public.crt",
keyFile: "../resource/path/to/private.key"
},
An GraphQL listener can be configured to accept new connections that are
secured via mutual SSL.
The graphql:ListenerSecureSocket
record provides the SSL-related listener configurations.
mutualSsl: {
verifyClient: http:REQUIRE,
cert: "../resource/path/to/public.crt"
},
Enables mutual SSL.
protocol: {
name: http:TLS,
versions: ["TLSv1.2", "TLSv1.1"]
},
Enables the preferred SSL protocol and its versions.
ciphers: ["TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA"]
Configures the preferred ciphers.
}
);
service /graphql on securedEP {
resource function get greeting() returns string {
return "Hello, World!";
}
}
# You may need to change the certificate file path, private key file path, and
# trusted certificate file path.
bal run graphql_service_mutual_ssl.bal