Quellcode durchsuchen

added let's encrypt certbot config

christopher-besch vor 3 Jahren
Ursprung
Commit
8caa90f4be
1 geänderte Dateien mit 9 neuen und 0 gelöschten Zeilen
  1. 9 0
      DOCUMENTATION.md

+ 9 - 0
DOCUMENTATION.md

@@ -458,6 +458,15 @@ key = /path/to/server_key.pem
 certificate_authority = /path/to/client_cert.pem
 ```
 
+If you're using Let's Encrypt's Certbot, the configuration should look similar to this:
+
+```ini
+[server]
+ssl = True
+certificate = /etc/letsencrypt/live/{Your Domain}/fullchain.pem
+key = /etc/letsencrypt/live/{Your Domain}/privkey.pem
+```
+
 Example **nginx** configuration:
 
 ```nginx