You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Installs the required acme-client rubygem.
31
31
32
32
Usage
33
33
-----
34
-
Use the `acme_certificate` resource to request a certificate with the http-01 challange. The webserver for the domain for which you are requesting a certificate must be running on the local server. This resource only supports the http validation method. To use the tls-sni-01 challange, please see the resource below. Provide the path to your `wwwroot` for the specified domain.
34
+
Use the `acme_certificate` resource to request a certificate with the http-01 challenge. The webserver for the domain for which you are requesting a certificate must be running on the local server. This resource only supports the http validation method. To use the tls-sni-01 challenge, please see the resource below. Provide the path to your `wwwroot` for the specified domain.
35
35
36
36
```ruby
37
37
acme_certificate 'test.example.com'do
@@ -41,7 +41,7 @@ acme_certificate 'test.example.com' do
41
41
end
42
42
```
43
43
44
-
In case your webserver needs an already existing certificate when installing a new server you will have a bootstrap problem. Webserver cannot start without certificate, but the certificate cannot be requested without the running webserver. To overcome this a self-signed certificate can be generated with the `acme_selfsigned` resource.
44
+
If your webserver needs an existing certificate already when installing a new server, you will have a bootstrap problem: The web server cannot start without a certificate, but the certificate cannot be requested without the running web server. To overcome this, a temporary self-signed certificate can be generated with the `acme_selfsigned` resource, allowing the web server to start.
45
45
46
46
```ruby
47
47
acme_selfsigned 'test.example.com'do
@@ -110,7 +110,7 @@ acme_selfsigned "#{site}" do
110
110
notifies :restart, "service[apache2]", :immediate
111
111
end
112
112
113
-
# Set up your webserver here...
113
+
# Set up your web server here...
114
114
115
115
# Get and auto-renew the certificate from Let's Encrypt
116
116
acme_certificate "#{site}"do
@@ -124,7 +124,7 @@ end
124
124
125
125
Testing
126
126
-------
127
-
The kitchen includes a `pebble` server to run the integration tests with, so testing can run locally without interaction with the online API's.
127
+
The kitchen includes a `pebble` server to run the integration tests with, so testing can run locally without interaction with the online APIs.
0 commit comments