Describe the bug
I'm trying to use tls1.2 and it doesn't work. Goes to tls1.3.
To reproduce
Steps to reproduce the behavior:
- docker compose, build image from 'nginx:1.27'
- use tls.12
- only loads through 1.3
Expected behavior
page should be loaded through tls1.2 as well. If not possible then it shouldn't be loaded since tls1.3 is not available.
Your environment
Additional context
No additional configuration (worth mentioning)
listen 443 ssl;
listen [::]:443 ssl;
# http2 on;
ssl_protocols TLSv1.2;
When I do nmap (inside the container) I get:
PORT STATE SERVICE
443/tcp open https
| ssl-enum-ciphers:
| TLSv1.3:
| ciphers:
| TLS_AKE_WITH_AES_256_GCM_SHA384 (secp384r1) - A
| TLS_AKE_WITH_CHACHA20_POLY1305_SHA256 (secp384r1) - A
| TLS_AKE_WITH_AES_128_GCM_SHA256 (secp384r1) - A
| cipher preference: server
|_ least strength: A
Using letsencrypt, if useful.
Even though tls1.3 is not enabled in nginx config, page is loaded.
Describe the bug
I'm trying to use tls1.2 and it doesn't work. Goes to tls1.3.
To reproduce
Steps to reproduce the behavior:
Expected behavior
page should be loaded through tls1.2 as well. If not possible then it shouldn't be loaded since tls1.3 is not available.
Your environment
Additional context
No additional configuration (worth mentioning)
When I do nmap (inside the container) I get:
Using letsencrypt, if useful.
Even though tls1.3 is not enabled in nginx config, page is loaded.