-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid specifying on demand 'ask' endpoint when using my own issuer #5986
Comments
(The You could set up a simple ask endpoint (within Caddy itself, just a site that's bound to localhost) that always returns 200 OK. |
For example:
|
Thanks for the response, and the suggestion. I tried this previously and while it works, I'm looking for a way to avoid the network call during the cert pipeline. Perhaps this could be a module with a default that has the same behavior as the current ask? |
Yeah, we'll probably add |
Okay, consider this a +1 for the module. :) |
See #6055 |
@mholt I looked at the PR and it seems to fit the bill! I'll give it a try as well. Thanks! |
I've written my own
tls.issuance
module, similar totls.issuance.internal
. I want to use on-demand behavior here but without any limits; that is, I don't want to specify anask
endpoint or anyrate_limit
configuration in this case.I see that Caddy has a strict set of conditions under which an ask endpoint isn't enforced -- namely that you are using only
tls.issuance.internal
. I certainly understand these safe guards being in place, but I'm wondering if there has been consideration given to how one might opt-out of these when needed.Cheers!
The text was updated successfully, but these errors were encountered: