df.tips
How to fix «the "ssl" directive is deprecated, use the "listen ... ssl" directive instead» for Nginx?
Nginx
nginx
,
tls
,
public-key-certificate
,
public-key-cryptography
dmitrii_fediuk
(Dmitrii Fediuk)
June 28, 2023, 4:57pm
2
Replace
listen 2197; ssl on;
with
listen 2197 ssl;
stackoverflow.com/a/51703160