You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To use tide-acme, set up HTTPS with Tide normally using tide_rustls, but
instead of specifying a certificate and key, call the acme method to
configure automatic certificates in the TLS listener:
This will configure the TLS stack to obtain a certificate for the domain
domain.example, which must be a domain for which your Tide server handles
HTTPS traffic.
On initial startup, your server will register a certificate via Let's Encrypt.
Let's Encrypt will verify your server's control of the domain via an ACME
tls-alpn-01 challenge, which the TLS
listener configured by tide-acme will respond to.
You must supply a cache via [AcmeConfig::cache] or one of the other cache
methods. This cache will keep the ACME account key and registered certificates
between runs, needed to avoid hitting rate limits. You can use
[rustls_acme::caches::DirCache] for a simple filesystem cache, or implement
your own caching using the rustls_acme cache traits.
By default, tide-acme will use the Let's Encrypt staging environment, which
is suitable for testing purposes; it produces certificates signed by a staging
root so that you can verify your stack is working, but those certificates will
not be trusted in browsers or other HTTPS clients. The staging environment has
more generous rate limits for use while testing.
When you're ready to deploy to production, you can call
.directory_lets_encrypt(true) to switch to the production Let's Encrypt
environment, which produces certificates trusted in browsers and other HTTPS
clients. The production environment has stricter rate
limits.