diff options
| author | Randy Merrill <randy@blinkk.com> | 2020-06-27 08:27:29 -0600 |
|---|---|---|
| committer | Randy Merrill <randy@blinkk.com> | 2020-06-27 08:27:29 -0600 |
| commit | b57b3a8c50f2875ad6156fa26cca15ab12ba52e1 (patch) | |
| tree | d99908c52a41f810ee19b4bd136173716c9d7035 | |
| parent | dcf743887d27fa11b113f45bc40be3a0cd2d8c31 (diff) | |
Removing the wildcard from the instructions.
| -rw-r--r-- | acmens.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -225,7 +225,7 @@ DNS TXT record contents: \"{token}\" Notes: - Do not include the quotes in the TXT record. -""".format(domain=domain, token=challenge["token"])) +""".format(domain=domain.replace('*.', ''), token=challenge["token"])) else: # Challenge response for http server. response_uri = ".well-known/acme-challenge/{0}".format( |
