diff options
-rw-r--r-- | doc/md/Server-configuration.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/md/Server-configuration.md b/doc/md/Server-configuration.md index b4dfc53d..70ae087a 100644 --- a/doc/md/Server-configuration.md +++ b/doc/md/Server-configuration.md | |||
@@ -77,7 +77,6 @@ sudo systemctl stop apache2 | |||
77 | sudo systemctl stop nginx | 77 | sudo systemctl stop nginx |
78 | 78 | ||
79 | # generate initial certificates - Let's Encrypt ACME servers must be able to access your server! | 79 | # generate initial certificates - Let's Encrypt ACME servers must be able to access your server! |
80 | # (DNS records must be correctly pointing to it, firewall/NAT on port 80/443 must be open) | ||
81 | sudo certbot certonly --standalone --noninteractive --agree-tos --email "admin@shaarli.mydomain.org" -d shaarli.mydomain.org | 80 | sudo certbot certonly --standalone --noninteractive --agree-tos --email "admin@shaarli.mydomain.org" -d shaarli.mydomain.org |
82 | # this will generate a private key and certificate at /etc/letsencrypt/live/shaarli.mydomain.org/{privkey,fullchain}.pem | 81 | # this will generate a private key and certificate at /etc/letsencrypt/live/shaarli.mydomain.org/{privkey,fullchain}.pem |
83 | 82 | ||
@@ -150,7 +149,13 @@ sudo nano /etc/apache2/sites-available/shaarli.mydomain.org.conf | |||
150 | SSLEngine on | 149 | SSLEngine on |
151 | SSLCertificateFile /etc/letsencrypt/live/shaarli.mydomain.org/fullchain.pem | 150 | SSLCertificateFile /etc/letsencrypt/live/shaarli.mydomain.org/fullchain.pem |
152 | SSLCertificateKeyFile /etc/letsencrypt/live/shaarli.mydomain.org/privkey.pem | 151 | SSLCertificateKeyFile /etc/letsencrypt/live/shaarli.mydomain.org/privkey.pem |
153 | Include /etc/letsencrypt/options-ssl-apache.conf | 152 | |
153 | # Let's Encrypt settings from https://github.com/certbot/certbot/blob/master/certbot-apache/certbot_apache/_internal/tls_configs/current-options-ssl-apache.conf | ||
154 | SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1 | ||
155 | SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384 | ||
156 | SSLHonorCipherOrder off | ||
157 | SSLSessionTickets off | ||
158 | SSLOptions +StrictRequire | ||
154 | 159 | ||
155 | # SSL/TLS configuration (for self-signed certificates) | 160 | # SSL/TLS configuration (for self-signed certificates) |
156 | #SSLEngine on | 161 | #SSLEngine on |