Skip to content

Commit c764b75

Browse files
Update README.md
Various trivial English fixes.
1 parent 2871ed6 commit c764b75

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Installs the required acme-client rubygem.
3131

3232
Usage
3333
-----
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.
3535

3636
```ruby
3737
acme_certificate 'test.example.com' do
@@ -41,7 +41,7 @@ acme_certificate 'test.example.com' do
4141
end
4242
```
4343

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.
4545

4646
```ruby
4747
acme_selfsigned 'test.example.com' do
@@ -110,7 +110,7 @@ acme_selfsigned "#{site}" do
110110
notifies :restart, "service[apache2]", :immediate
111111
end
112112

113-
# Set up your webserver here...
113+
# Set up your web server here...
114114

115115
# Get and auto-renew the certificate from Let's Encrypt
116116
acme_certificate "#{site}" do
@@ -124,7 +124,7 @@ end
124124

125125
Testing
126126
-------
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.
128128

129129
Contributing
130130
------------

0 commit comments

Comments
 (0)