Oxla provides support for using SSL connections to encrypt client/server communications for increased security, that safeguards your data. The following documentation will guide you through the process of configuring SSL for your Oxla database.
To enable SSL support, the following settings must be correctly configured:
require
or optional
Providing a ca_crt_file
, which is used to verify whether the certificate was signed by the Certificate Authority (CA) is optional.
min_protocol_version
and max_protocol_version
can be omitted, as they have default values.Clients are authorized to establish connections using both non-SSL and SSL protocols.
Connections established with sslmode=require
or sslmode=disable
will be accepted.
Clients are permitted to connect only through SSL connections. Any attempts to establish a connection using tools that require SSL,
such as psql
with the sslmode=disable
option, will be rejected.
Clients are permitted to connect only through non-SSL connections. Any attempts to establish a connection using tools that require SSL,
such as psql
with the sslmode=require
option, will be rejected.
SSL Mode | Eavesdropping Protection | Support |
---|---|---|
off | No | SSL connections not supported |
require | Yes | Only SSL connections are allowed |
optional | Yes | both SSL and no SSL connections are supported |
For a more detailed explanation of the configuration options, please refer to the Oxla Configuration File.
Oxla provides support for using SSL connections to encrypt client/server communications for increased security, that safeguards your data. The following documentation will guide you through the process of configuring SSL for your Oxla database.
To enable SSL support, the following settings must be correctly configured:
require
or optional
Providing a ca_crt_file
, which is used to verify whether the certificate was signed by the Certificate Authority (CA) is optional.
min_protocol_version
and max_protocol_version
can be omitted, as they have default values.Clients are authorized to establish connections using both non-SSL and SSL protocols.
Connections established with sslmode=require
or sslmode=disable
will be accepted.
Clients are permitted to connect only through SSL connections. Any attempts to establish a connection using tools that require SSL,
such as psql
with the sslmode=disable
option, will be rejected.
Clients are permitted to connect only through non-SSL connections. Any attempts to establish a connection using tools that require SSL,
such as psql
with the sslmode=require
option, will be rejected.
SSL Mode | Eavesdropping Protection | Support |
---|---|---|
off | No | SSL connections not supported |
require | Yes | Only SSL connections are allowed |
optional | Yes | both SSL and no SSL connections are supported |
For a more detailed explanation of the configuration options, please refer to the Oxla Configuration File.