1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-21 19:01:07 +03:00
Commit Graph

47 Commits

Author SHA1 Message Date
Brad Warren
bb6736f36c Remove http01_port magic 2015-11-20 16:09:39 -08:00
Jakub Warmuz
5e8ed2bbd2 --dvsni-port -> --tls-sni-01-port 2015-11-07 18:24:17 +00:00
Jakub Warmuz
581a701cd1 Kill simpleHttp in core 2015-11-01 11:01:22 +00:00
Brad Warren
67ee9bf930 Added 'strict_permissions' to constants.py 2015-10-12 10:00:35 -07:00
James Kasten
84267c8f3a Merge branch 'master' into remove_revoker
Conflicts:
	letsencrypt/configuration.py
	letsencrypt/interfaces.py
	letsencrypt/tests/configuration_test.py
2015-09-26 01:19:28 -07:00
James Kasten
022c5c3c24 Remove revoker and associated code 2015-09-25 22:35:43 -07:00
James Kasten
b72f451a1b rename certs directory to csr directory 2015-09-25 22:26:32 -07:00
Peter Eckersley
1fff04ea9e Change the renewal configuration directory
Fixes #732
2015-09-15 18:51:24 -07:00
Jakub Warmuz
bf754b6302 Add ACME Directory Resource 2015-09-09 17:22:20 +00:00
Brad Warren
cfabfa1a67 Merge remote-tracking branch 'kuba/update-challenges' into update-challenges 2015-08-04 16:57:53 -07:00
James Kasten
67be424779 Merge branch 'master' into apache_modules 2015-07-30 01:26:08 -07:00
James Kasten
3bcf29be51 Change default rollback to 1 2015-07-30 01:22:59 -07:00
Jakub Warmuz
fe237df2cc Update default server URI to staging.
http://letsencrypt.status.io/pages/maintenance/55957a99e800baa4470002da/55b90ed12c1b61d83b0001eb
2015-07-29 21:15:45 +00:00
Jakub Warmuz
e0651ad050 Remove Recovery Token. 2015-07-25 12:00:04 +00:00
Jakub Warmuz
7dc64e0387 Rewrite acccounts and registration.
Save accounts to:

    /etc/letsencrypt/accounts/www.letsencrypt-dmeo.org/acme/new-reg/ \
    kuba.le.wtf@2015-07-04T14:04:10Z/ \
    {regr.json,meta.json,private_key.json}

Account now represents a combination of private key, Registration
Resource and client account metadata. `Account.id` based on the
account metadata (creation host and datetime). UI interface
(`cli._determine_account`) based on the `id`, and not on email as
previously.

Add `AccountStorage` interface and `AccountFileStorage`,
`AccountMemoryStorage` implementations (latter, in-memory, useful for
testing).

Create Account only after Registration Resource is received
(`register()` returns `Account`).

Allow `client.Client(..., acme=acme, ...)`: API client might reuse
acme.client.Client as returned by `register()`.

Move report_new_account to letsencrypt.account, client.Client.register
into client.register.

Use Registration.from_data acme API.

achallenges.AChallenge.key is now the `acme.jose.JWK`, not
`le_util.Key`. Plugins have to export PEM/DER as necessary
(c.f. `letsencrypt.plugins.common.Dvsni.get_key_path`)

Add --agree-tos, save --agree-eula to "args.eula". Prompt for EULA as
soon as client is launched, add prompt for TOS.

Remove unnecessary letsencrypt.network. Remove, now irrelevant,
`IConfig.account_keys_dir`.

Based on the draft from
https://github.com/letsencrypt/letsencrypt/pull/362#issuecomment-97946817.
2015-07-09 06:43:45 +00:00
Jakub Warmuz
c639673de5 Read config from $XDG_CONFIG_HOME/letsencrypt/cli.ini. 2015-07-03 14:38:09 +00:00
Jakub Warmuz
b1b3befd04 Backport #440 CLI changes, clean up after #485
Additonally:
- remove "-s", it will not be used often
- remove --accountkey (former --authkey), as it is not used
- CLI_DEFAULTS: cert_path -> auth_cert_path, chain_path -> auth_chain_path
- remove remaining "LetsEncrypt" error prefixes (fixes #487).
- HeplfulParser:
  - call add_plugin_args from outside (this makes sure plugins are
    displayed last in --help all)
2015-06-26 13:26:09 +00:00
Jakub Warmuz
eb149b9129 CLI debug log file 2015-06-25 19:55:16 +00:00
Jakub Warmuz
e51f300ee6 Merge remote-tracking branch 'github/letsencrypt/master' into csr
Conflicts:
	letsencrypt/cli.py
	letsencrypt/client.py
	letsencrypt/tests/client_test.py
2015-06-25 13:36:41 +00:00
Jakub Warmuz
e82f605c22 Merge branch '440-no-cli' into 473-no-cli
Conflicts:
	letsencrypt/cli.py
        letsencrypt/renewer.py
2015-06-23 08:17:07 +00:00
Jakub Warmuz
f1e747ac1a Revert CLI changes, blocked by #485. 2015-06-23 07:48:45 +00:00
Jakub Warmuz
278bd8deb2 Rename IConfig.csr_dir back to IConfig.cert_dir.
This will be used in #504.
2015-06-23 07:48:45 +00:00
Jakub Warmuz
8e582dfff8 Merge remote-tracking branch 'github/letsencrypt/master' into cli-config-fixes
Conflicts:
	letsencrypt/constants.py
2015-06-23 07:47:48 +00:00
Jakub Warmuz
cf76593fa7 Remove constants.NETSTAT. Update docs for IConfig.server. 2015-06-22 18:03:04 +00:00
Jakub Warmuz
8f4280c2df Merge remote-tracking branch 'github/letsencrypt/master' into cli-config-fixes
Conflicts:
	letsencrypt_apache/tests/util.py
	letsencrypt_nginx/tests/util.py
2015-06-20 20:04:58 +00:00
Jakub Warmuz
ad79d7c8b6 Adjust client reports to use RenewerConfiguration. Fix docs. 2015-06-12 17:43:19 +00:00
Jakub Warmuz
7f5abba83e Rename SimpleHTTPS to SimpleHTTP. 2015-06-12 08:23:32 +00:00
Jakub Warmuz
e346bfafd6 Merge branch 'cli-config-fixes' into renewer-cli 2015-06-11 21:14:28 +00:00
Jakub Warmuz
9a7ade7cba Rename cert_dir to csr_dir. 2015-06-02 17:42:23 +00:00
Jakub Warmuz
0b57daf473 Renewer dynamic dirs based on --config-dir/--work-dir (fixes #469). 2015-06-02 12:10:22 +00:00
Jakub Warmuz
ed5e8df8d7 Merge remote-tracking branch 'github/letsencrypt/master' into cli-config-fixes
Conflicts:
	letsencrypt/constants.py
	letsencrypt/interfaces.py
2015-06-02 00:19:05 +00:00
Jakub Warmuz
c440b0354d Fix typo 2015-06-02 00:16:24 +00:00
Jakub Warmuz
3fefd28080 Only configure --config-dir/--work-dir (rest dynamic). 2015-06-01 23:49:07 +00:00
Jakub Warmuz
2929039cf4 Split --test-mode into --no-verify-ssl and --dvsni-port (fixes #462). 2015-06-01 20:56:58 +00:00
Jakub Warmuz
9ea5e20b44 Merge remote-tracking branch 'github/letsencrypt/master' into cli-config-fixes
Conflicts:
	letsencrypt/cli.py
	letsencrypt/constants.py
	letsencrypt/interfaces.py
2015-05-29 07:42:24 +00:00
Seth Schoen
e15b7b4deb Merge branch 'master' into renewer_config_location
Conflicts:
	letsencrypt/cli.py
	letsencrypt/client.py
	letsencrypt/interfaces.py
2015-05-28 14:55:47 -07:00
Jakub Warmuz
eef1ce6cf5 Merge remote-tracking branch 'github/letsencrypt/master' into cli-config-fixes-2 2015-05-28 20:47:35 +00:00
Jakub Warmuz
a3d452c112 storage.config_with_defaults 2015-05-28 19:27:30 +00:00
Jakub Warmuz
5547d13f12 Merge branch 'renewer-cleanup' into cli-config-fixes-2
Conflicts:
	letsencrypt/cli.py
	letsencrypt/client.py
	letsencrypt/interfaces.py
2015-05-28 19:07:58 +00:00
Seth Schoen
b617305927 Inelegant approach to support --renewer-config-file command-line argument 2015-05-27 12:38:47 -07:00
Seth Schoen
b2b70279c2 Merge branch 'kuba-test-mode' of ssh://github.com/letsencrypt/lets-encrypt-preview into renewer 2015-05-26 14:34:31 -07:00
Jacob Hoffman-Andrews
8562496f82 Fixes from review comments. 2015-05-22 13:06:17 -07:00
Seth Schoen
5c6d833fc1 Merge branch 'master' into renewer 2015-05-22 12:49:03 -07:00
Jakub Warmuz
f00b674131 Move --cert-path and --chain-path from global IConfig to subparsers. 2015-05-22 08:06:32 +00:00
Seth Schoen
8f25241170 Introduce proper renewer config via constants.py 2015-05-18 15:57:12 -07:00
Jakub Warmuz
ac9f97100c Merge remote-tracking branch 'github/letsencrypt/master' into test-mode
Conflicts:
	letsencrypt/tests/configuration_test.py
	letsencrypt/tests/network2_test.py
2015-05-12 21:16:56 +00:00
Jakub Warmuz
41e86df252 Move letsencrypt.client to letsencrypt 2015-05-10 12:32:05 +00:00