diff --git a/docs/firststeps-rp.md b/docs/firststeps-rp.md index 62e5f04f8..2392edd31 100644 --- a/docs/firststeps-rp.md +++ b/docs/firststeps-rp.md @@ -93,7 +93,7 @@ Let's Encrypt will follow our rewrite, certificate requests will work fine. **Take care of highlighted lines.** -``` hl_lines="4 10 12 13 29 43" +``` hl_lines="4 10 12 13 25 39" server { listen 80 default_server; listen [::]:80 default_server; @@ -111,16 +111,12 @@ server { ssl_session_cache shared:SSL:50m; ssl_session_tickets off; + # See https://ssl-config.mozilla.org/#server=nginx for the latest ssl settings recommendations + # An example config is given below ssl_protocols TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5:!SHA1:!kRSA; ssl_prefer_server_ciphers off; - # Recommended ssl settings if your system supports it - # See https://ssl-config.mozilla.org/#server=nginx for latest ssl settings recommendations - #ssl_protocols TLSv1.2 TLSv1.3; - #ssl_ciphers 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; - #ssl_prefer_server_ciphers off; - location /Microsoft-Server-ActiveSync { proxy_pass http://127.0.0.1:8080/Microsoft-Server-ActiveSync; proxy_set_header Host $http_host;