Xray-0.1.3 beta

[fix] nginx cipher 参数去除
pull/401/head
wulabing 2021-07-08 17:47:48 +08:00
parent 1ea41e5311
commit db792c575b
No known key found for this signature in database
GPG Key ID: 213391AFDF73AE00
2 changed files with 1 additions and 3 deletions

View File

@ -5,7 +5,6 @@
ssl_certificate_key /ssl/xray.key;
ssl_protocols TLSv1.3;
ssl_ecdh_curve X25519:P-256:P-384:P-521;
ssl_ciphers '[ECDHE-ECDSA-AES128-GCM-SHA256|ECDHE-ECDSA-CHACHA20-POLY1305|ECDHE-RSA-AES128-GCM-SHA256|ECDHE-RSA-CHACHA20-POLY1305]:ECDHE+AES128:RSA+AES128:ECDHE+AES256:RSA+AES256:ECDHE+3DES:RSA+3DES';
server_name xxx;
index index.html index.htm;
root /www/xray_web;

View File

@ -3,9 +3,8 @@
listen [::]:443 http2;
ssl_certificate /ssl/xray.crt;
ssl_certificate_key /ssl/xray.key;
ssl_protocols TLSv1.3 TLSv1.2;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ecdh_curve X25519:P-256:P-384:P-521;
ssl_ciphers '[ECDHE-ECDSA-AES128-GCM-SHA256|ECDHE-ECDSA-CHACHA20-POLY1305|ECDHE-RSA-AES128-GCM-SHA256|ECDHE-RSA-CHACHA20-POLY1305]:ECDHE+AES128:RSA+AES128:ECDHE+AES256:RSA+AES256:ECDHE+3DES:RSA+3DES';
server_name xxx;
index index.html index.htm;
root /www/xray_web;