wildcard support? #9
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I was getting invalid domain name error when doing *.example.com
I changed utils.js
from
var re = /^[a-zA-Z0-9.-]+$/;
to
var re = /^(*.)?[a-zA-Z0-9.-]+$/;
and the it worked :)
Let me know if I'm just completely missing something here though.
to support wildcards.
Ah...
Good catch. I updated the underlying acme-v2.js, and had tested that, but I hadn't actually tested it in greenlock itself.
Thanks so much for the patch!
I really, really appreciate it.
I'll try to fit it in to get that published within a few hours.
:)
sweet :)
Hey
m00ki3
, Will you test v2.2.7?This is the change that I made:
At first I read your regex incorrectly because the
\
were taken out... but makes sense now. :)woo hoo! yup, works :)