Skip to content

Commit ad52e98

Browse files
committed
monitor
1 parent 6c13ef6 commit ad52e98

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

markdown-file/Nginx-Install-And-Settings.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -619,6 +619,20 @@ http {
619619
620620
```
621621

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+
622636
----------------------------------------------------------------------
623637

624638
## Nginx 压力测试

0 commit comments

Comments
 (0)