Connecting via SSL
SSL is required for all client connections.
bit.io requires all connections to connect over SSL.
Most postgres clients automatically configure SSL. However, depending on your client, you may need to enable SSL. The URLs provided by bit.io contain
?sslmode=require
which by convention instructs modern postgreSQL clients to connect with postgres.Connections using the JDBC driver may require the
ssl
property to be set totrue
(details)If you're having an issue with your specific client, please reach out to [email protected]
Why is my client not encrypting the connection?
PostgreSQL (and its connection protocol) existed before modern encrypted connections became standard. Today, encrypted connections are standard. However, because many postgres clients are legacy, they do not auto-encrypt.
Updated about 1 month ago