-
First of all this project is fantastic, thank you! And I'm running a separate stack for each of them using nginx-proxy to route to them. No one is routed to the base domain example.com Does that mean that a different certificate will be issued for each subdomain ? Since LetsEncrypt rate limits on the base domain (example.com) will I be hitting rate limits? Second, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The official LE rate limits doc might be clearer than #274 More specifically:
So 20 or 2000 new users a week depending on wether you use discrete certificates for each user's subdomain or group them into SAN certificates ... BUT currently the project handles ACME account registration in a simplistic way: it creates a new account for each new base domain, no matter what. If you request 20 discrete certificates, you'll end up with 20 accounts key. And guess what, there is rate limiting on this too.
So you might hit the 10 accounts per IP Address per 3 hours limit if you generate your 20 allowed certs per Registered Domain per week at once on the same host, or more probably if you use test certificates (because these too register new accounts, whose keys are wiped when you switch to production certificate). I use my own modified version of this project to circumvent this (it attempt to re-use a single account key for all domains and certificates).
Take a look at Docker Volume plugins. |
Beta Was this translation helpful? Give feedback.
-
Hi, ((This could even be more complicated if I also want "example.com" to point to the same host/docker, i.e. My problem is that when the SSL is created for the "application 2" the SSL-certificates for "application 1" gets lost / is no longer valid. Maybe it is not OK to set the "main domain" (example.de and/or example.com) as first entries in both docker-compose?? Thanks a lot, |
Beta Was this translation helpful? Give feedback.
The official LE rate limits doc might be clearer than #274
More specifically: