summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFarhan Khan <farhan@farhan.codes>2020-08-13 22:38:23 -0400
committerFarhan Khan <farhan@farhan.codes>2020-08-13 22:38:23 -0400
commit816c04abdc2e8045f3fa52071b953c5ac608d0bd (patch)
tree0839f929679e9933640ed0e4c56824b94ac17d5b /docs
parentb0c456d18d3b4e20233a7dbaef3c55d0586a1946 (diff)
Updates
Diffstat (limited to 'docs')
-rw-r--r--docs/installation/freebsd_en.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/installation/freebsd_en.md b/docs/installation/freebsd_en.md
index 458b8032d..f1e06892c 100644
--- a/docs/installation/freebsd_en.md
+++ b/docs/installation/freebsd_en.md
@@ -123,8 +123,8 @@ with your domain name):
# sudo -Hu acme -g acme acme.sh --issue -d example.com --stateless
# acme.sh --home /var/db/acme/.acme.sh/ --install-cert -d example.com \
--ca-file /etc/ssl/example.com/ca.pem \
- --key-file /etc/ssl/example.com/key.pem \
- --cert-file /etc/ssl/example.com/cert.pem \
+ --key-file /etc/ssl/example.com/privkey.pem \
+ --cert-file /etc/ssl/example.com/chain.pem \
--fullchain-file /etc/ssl/example.com/fullchain.pem
```
@@ -135,8 +135,8 @@ Let's add auto-renewal to `/etc/crontab`
/usr/local/bin/sudo -Hu acme -g acme /usr/local/sbin/acme.sh -r -d example.com --stateless
/usr/local/sbin/acme.sh --home /var/db/acme/.acme.sh/ --install-cert -d example.com \
--ca-file /etc/ssl/example.com/ca.pem \
- --key-file /etc/ssl/example.com/key.pem \
- --cert-file /etc/ssl/test-app.mailchar.com/cert.pem \
+ --key-file /etc/ssl/example.com/privkey.pem \
+ --cert-file /etc/ssl/example.com/chain.pem \
--fullchain-file /etc/ssl/example.com/fullchain.pem
```
@@ -158,7 +158,7 @@ block, as follows:
```
http {
...
- include /usr/local/etc/nginx/sites-available/*.conf;
+ include /usr/local/etc/nginx/sites-available/*;
}
```