lets-encrypt-warp icon indicating copy to clipboard operation
lets-encrypt-warp copied to clipboard

Helper crate to make TLS with warp easy using lets-encrypt

Results 6 lets-encrypt-warp issues
Sort by recently updated
recently updated
newest added

PR for issue #6 . I have just made the dependency requirement more lax. It works on both 0.2 and 0.3, without any feature flags.

This crate currently uses warp 0.2, but I am using 0.3. I am getting version conflicts. ``` | 216 | / impl FilterBase for WithLog 217 | | where 218...

This crate depends on acme_lib, which on turn depends on openssl. But warp does not use openssl - it uses rustls. So an app built with lets-encrypt-warp currently ends up...

Hi David, The `lets_encrypt` function wasn't working for me so I changed it to run async. I also made it more general, in that it will process every authorisation. That...

Perhaps bind to SocketAddr::from_str("[::]:80").unwrap() and SocketAddr::from_str("[::]:443").unwrap() instead of 0.0.0.0 ? That way it listens to both IPv4 and IPv6. Or better, allow this to be specified, since listening to the...

Hi, this looks super interesting, I'm wondering where in a warp filter chain or routes specification I would call this though, do you have a simple example of using this?