Address code review: fix proxy_redirect conflict and add TLSv1.3 support

Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-19 11:30:40 +00:00
parent 420acaea0d
commit 99fc601f5b
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
proxy_http_version 1.1;
proxy_ignore_client_abort off;
proxy_read_timeout 86400s;
proxy_redirect off;
#proxy_redirect off;
proxy_send_timeout 86400s;
proxy_max_temp_file_size 0;

View File

@@ -1,4 +1,4 @@
ssl_protocols TLSv1.2;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:DHE-RSA-AES256-SHA;
ssl_ecdh_curve secp384r1;