diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2023-03-07 10:32:32 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2023-03-07 10:32:56 -0500 |
| commit | c82d81e018d280f5087197931e03ec94289f1e5b (patch) | |
| tree | 46614e550b628fbc2c8b32b1991f1985d9705a3e | |
| parent | 49f968dcf908b1731f7fe79237ff494abb3a12d5 (diff) | |
ssl_reject_handshake is working as intended
| -rw-r--r-- | nginx/nginx.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 65e874f6..890dff3a 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -149,8 +149,9 @@ http { listen [::]:443 default_server ssl backlog=4096; ssl_reject_handshake on; - # work around unreliable ssl_reject_handshake keepalive_timeout 0; + + # https://trac.nginx.org/nginx/ticket/2012 location / { return 404; } |
