N
N
nallion2022-02-20 23:28:15
Nginx
nallion, 2022-02-20 23:28:15

Nginx - how to enable the old encryption algorithm?

There is an old push-button phone that does not support tls, only simple ciphers, like this one https://sha256.badssl.com
How to make nginx return sha256, without tls? To be able to access the site via https through the browser of this phone?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexander Karabanov, 2022-02-21
@nallion

ssl_protocols SSLv2 SSLv3;
ssl_ciphers ALL:!aNULL:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;

Root certificates are clearly outdated on the old push-button phone, so it will work, but it will still swear at certificates.

N
Nikolai Savelyev, 2022-02-21
@AgentSmith

You need to change the browser of this phone to one that supports this version of encryption.
And at the same time, take into account that stronger encryption requires more performance from hardware and older devices may not be able to cope with this in a reasonable time.

A
AUser0, 2022-02-21
@AUser0

Maybe this will help?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question