fix compatiblity issues on some Android 11 phone

This commit is contained in:
Minoplhy 2022-01-17 15:43:09 +00:00 committed by GitHub
parent 6a5452a2f5
commit 3581faba09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,9 @@ upstream dns {
server {
listen 853 ssl;
listen [::]:853 ssl;
ssl_protocols TLSv1.3;
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;
ssl_certificate /go/to/ket/;
ssl_certificate_key /go/to/ket/;
proxy_pass dns;