Skip to content

Commit ad7802f

Browse files
authored
Merge pull request diafygi#184 from nledez/fix-typos
Fix typos in README.md
2 parents 6058ee6 + b9503e7 commit ad7802f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ to it, even for renewals. You can use the same CSR for multiple renewals. NOTE:
6767
you can't use your account private key as your domain private key!
6868

6969
```
70-
#generate a domain private key (if you haven't already)
70+
# Generate a domain private key (if you haven't already)
7171
openssl genrsa 4096 > domain.key
7272
```
7373

7474
```
75-
#for a single domain
75+
# For a single domain
7676
openssl req -new -sha256 -key domain.key -subj "/CN=yoursite.com" > domain.csr
7777
78-
#for multiple domains (use this one if you want both www.yoursite.com and yoursite.com)
78+
# For multiple domains (use this one if you want both www.yoursite.com and yoursite.com)
7979
openssl req -new -sha256 -key domain.key -subj "/" -reqexts SAN -config <(cat /etc/ssl/openssl.cnf <(printf "[SAN]\nsubjectAltName=DNS:yoursite.com,DNS:www.yoursite.com")) > domain.csr
8080
```
8181

@@ -89,12 +89,12 @@ Encrypt will perform a plain HTTP request to port 80 on your server, so you
8989
must serve the challenge files via HTTP (a redirect to HTTPS is fine too).
9090

9191
```
92-
#make some challenge folder (modify to suit your needs)
92+
# Make some challenge folder (modify to suit your needs)
9393
mkdir -p /var/www/challenges/
9494
```
9595

9696
```nginx
97-
#example for nginx
97+
# Example for nginx
9898
server {
9999
listen 80;
100100
server_name yoursite.com www.yoursite.com;
@@ -115,7 +115,7 @@ script on your server with the permissions needed to write to the above folder
115115
and read your private account key and CSR.
116116

117117
```
118-
#run the script on your server
118+
# Run the script on your server
119119
python acme_tiny.py --account-key ./account.key --csr ./domain.csr --acme-dir /var/www/challenges/ > ./signed_chain.crt
120120
```
121121

@@ -171,7 +171,7 @@ service nginx reload
171171
```
172172

173173
```
174-
#example line in your crontab (runs once per month)
174+
# Example line in your crontab (runs once per month)
175175
0 0 1 * * /path/to/renew_cert.sh 2>> /var/log/acme_tiny.log
176176
```
177177

0 commit comments

Comments
 (0)