lester 1.0.0.pre2 → 1.0.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -9
- data/lib/lester/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 629f5ef8a7b7ca2ec8dd33794b194db65f956820
|
4
|
+
data.tar.gz: e570cf77906310d5244170bc155bde166b5f2d43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 688a78a5d38fcdc5f5bd7b7fb5c8ace14c2498b992e3e61c124571ef7f83b66d32259ade45aa336058ac7a574e96373d3a44cafdc76ad8f649fa0a92e741b063
|
7
|
+
data.tar.gz: e2779dbe53014c23d91ea29df686bb90caf5f3507750ec6f1c9e3003e72f567a4d9ff3d91272f46f2d98fea2a97993d45264f5075131f2267a973f8d471bf86e
|
data/README.md
CHANGED
@@ -10,16 +10,15 @@ It uses S3 for storing certificates and expects that the private key for a
|
|
10
10
|
registered account is available from S3. Server side encryption is enabled by
|
11
11
|
default for all objects written by Lester, and it's possible to use KMS as well.
|
12
12
|
|
13
|
-
Should be noted that even though only a single domain is passed to `lester`, it
|
14
|
-
will actually include both the given domain and the `www` subdomain (i.e. `www.<domain>`)
|
15
|
-
when requesting a new certificate.
|
16
|
-
|
17
13
|
# Installation
|
18
14
|
|
19
15
|
```shell
|
20
16
|
gem install lester --pre
|
21
17
|
```
|
22
18
|
|
19
|
+
There are also self-contained binary artifacts attached to [each release on
|
20
|
+
GitHub](https://github.com/mthssdrbrg/lester/releases), for usage where a Ruby runtime isn't installed (for example AWS Lambda).
|
21
|
+
|
23
22
|
# Usage
|
24
23
|
|
25
24
|
To get started and upload a local private key the following command can be used:
|
@@ -35,27 +34,31 @@ following:
|
|
35
34
|
|
36
35
|
```shell
|
37
36
|
lester new --domain example.org \
|
37
|
+
--email contact@example.org \
|
38
38
|
--site-bucket example-org \
|
39
39
|
--storage-bucket example-org-backup \
|
40
|
-
--email contact@example.org \
|
41
40
|
--distribution-id ABCDEFGH
|
42
41
|
```
|
43
42
|
|
44
|
-
To enable server side encryption with KMS,
|
45
|
-
|
43
|
+
To enable server side encryption with KMS, specify `-k / --kms-id` with
|
44
|
+
either a key ID or an alias:
|
46
45
|
|
47
46
|
```shell
|
48
47
|
lester new --domain example.org \
|
48
|
+
--email contact@example.org \
|
49
49
|
--site-bucket example-org \
|
50
50
|
--storage-bucket example-org-backup \
|
51
|
-
--email contact@example.org \
|
52
51
|
--distribution-id ABCDEFGH \
|
53
52
|
--kms-id alias/letsencrypt
|
54
53
|
```
|
55
54
|
|
56
|
-
It's also possible to use `renew` rather than `new` if
|
55
|
+
It's also possible to use `renew` rather than `new` if preferable, the result
|
57
56
|
will be the same.
|
58
57
|
|
58
|
+
Should be noted that even though only a single domain is passed to `lester`, it
|
59
|
+
will actually include both the given domain and the `www` subdomain when
|
60
|
+
requesting a new certificate.
|
61
|
+
|
59
62
|
See `lester --help` for information about other command-line parameters.
|
60
63
|
|
61
64
|
## Copyright
|
data/lib/lester/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lester
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.pre3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mathias Söderberg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-12-
|
11
|
+
date: 2015-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: acme-client
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 0.2.2
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 0.2.2
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: aws-sdk
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|