Add ACME Directory Resource

This commit is contained in:
Jakub Warmuz
2015-09-09 17:22:20 +00:00
parent 44f7703f00
commit bf754b6302
11 changed files with 155 additions and 38 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ logger = logging.getLogger(__name__)
def _acme_from_config_key(config, key):
# TODO: Allow for other alg types besides RS256
return acme_client.Client(new_reg_uri=config.server, key=key,
return acme_client.Client(directory=config.server, key=key,
verify_ssl=(not config.no_verify_ssl))