-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider making the TLS implementation used in shuttle-shared-db
configurable
#690
Comments
This is especially relevant if you're using |
The thing I'm not sure about here is that since we use |
@utterstep awesome! I sent you an invite now to get the |
Closed by #870 |
(Opening this issue based on a question asked on Discord)
Currently the SQLx connection pool provisioned by
shuttle-shared-db
usesnative-tls
to establish a secure connection to the database server.Would it be thinkable to gate these behind features like
rustls
andnative-tls
, where one of them is set as the default? (this would be a breaking change)Looking at the SQLx source code, they use the
webpki-roots
certificates for their trust anchors.So if Shuttle installs their own CA certificates, using the
rustls
feature will break it.The text was updated successfully, but these errors were encountered: