We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c13ef6 commit ad52e98Copy full SHA for ad52e98
markdown-file/Nginx-Install-And-Settings.md
@@ -619,6 +619,20 @@ http {
619
620
```
621
622
+- 最新版本的 Nginx SSL 配置
623
+
624
+```
625
+listen 443 ssl;
626
627
+ssl_certificate /opt/jar/ssl/server.crt;
628
+ssl_certificate_key /opt/jar/ssl/server.key;
629
630
+ssl_session_timeout 5m;
631
+ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
632
+ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
633
+ssl_prefer_server_ciphers on;
634
635
636
----------------------------------------------------------------------
637
638
## Nginx 压力测试
0 commit comments