Require TLS + cert crate suggestions for proxy-server

I'm writing a basic reverse-proxy that would receive and forward HTTPS requests.
What crates should I use to ensure that my traffic is encrypted end-to-end?

I don't want to use nginx infront of this rust proxy-server.
What crates do I need to configure a certificate?

Also, what are the gotchas/attacks I should be looking out for?

If you use native-tls, the system certificate store will be configured by default.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.