diff --git a/letsencrypt/plugins/webroot.py b/letsencrypt/plugins/webroot.py index ed8991bc5..f11325f57 100644 --- a/letsencrypt/plugins/webroot.py +++ b/letsencrypt/plugins/webroot.py @@ -72,8 +72,7 @@ to serve all files under specified web root ({0}).""" return os.path.join(self.full_root, achall.chall.encode("token")) def _perform_single(self, achall): - response, validation = achall.gen_response_and_validation( - tls=(not self.config.no_simple_http_tls)) + response, validation = achall.gen_response_and_validation(tls=False) path = self._path_for_achall(achall) logger.debug("Attempting to save validation to %s", path) with open(path, "w") as validation_file: diff --git a/letsencrypt/tests/renewer_test.py b/letsencrypt/tests/renewer_test.py index 1e434b79e..3077be25d 100644 --- a/letsencrypt/tests/renewer_test.py +++ b/letsencrypt/tests/renewer_test.py @@ -48,7 +48,6 @@ class BaseRenewableCertTest(unittest.TestCase): config_dir=self.tempdir, work_dir=self.tempdir, logs_dir=self.tempdir, - no_simple_http_tls=False, ) )