Closed francescocaponio closed 8 months ago
Thanks, hope it could help other people too.
Doing so will not trigger any unwanted behaviour of boulder?
Thank you for the suggestion! Hopefully it is helpful for others indeed.
No it should be totally fine and not break anything else.
Not really an issue, but I had some troubles in debugging it before solving it.
Maybe this could be of help to other people. Could be added to the README.md in the common error messages section.
After you solved the #114, I started using it quite much for our internal development environment. We use docker containers to run separate development environments like gitpod or coder, and we use nginx proxy manager to manage the open ports of the containers with ssl (it automatically runs certbot pointing to labca to renew ssl certificates).
In order to allow developers to create their own shortcuts to specific ports, I created on the dns a wildcard record pointing to the development machine
dev.lan
, so they can createapp1.dev.lan
without the need to access to the DNS.What I noticed is that Boulder woud stop me to create certificates after two successful certificates created for that machine, even if they are for different services. I hit the rate limit page of LabCA, and then I went to find the rate limits rules of the boulder container:
What I did to solve this problem was firstly to add the server name and domain
dev.lan
of the development machine to the rate limit policies filerate-limit-policies.yml
, restart the boulder container and it started working. After that I thought that LabCA would add it automatically if added to the lockdown list, so I did it and restarted the container, solving my problem.I hope it is a solution that will not damage any other part of the software stack, but it really solved my problem. Not sure if this is a standard use case, but I'm happy about it.