Nginx - proxy pass - ailed (SSL - error - 1408F10B - SSL routines - ssl3 get record:wrong version number) while SSL handshaking to upstream
Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Версия от 15:51, 26 октября 2023; Admin iph (обсуждение | вклад)
Nginx - proxy pass - ailed (SSL - error - 1408F10B - SSL routines - ssl3 get record:wrong version number) while SSL handshaking to upstream - решение
Ошибка при проксировании:
[error] 163721#163721: *1 SSL_do_handshake() failed (SSL: error:1408F10B:SSL routines:ssl3_get_record:wrong version number) while SSL handshaking to upstream, client: IP, server: site.ru, request: "GET / HTTP/2.0", upstream: "https://IP:9090/", host: "site.ru"
Может говорить о том, что проксировать нужно не на https:// а на http://, то есть заменить в location {}:
proxy_pass https://IP:9090;
на
proxy_pass http://IP:9090;
и перезапустить nginx.