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
Admin iph (обсуждение | вклад) (Новая страница: «=== Nginx - proxy pass - ailed (SSL - error - 1408F10B - SSL routines - ssl3 get record:wrong version number) while SSL handshaking to upstream === Ошибка...») |
Admin iph (обсуждение | вклад) |
||
Строка 1: | Строка 1: | ||
− | === Nginx - proxy pass - ailed (SSL - error - 1408F10B - SSL routines - ssl3 get record:wrong version number) while SSL handshaking to upstream === | + | === Nginx - proxy pass - ailed (SSL - error - 1408F10B - SSL routines - ssl3 get record:wrong version number) while SSL handshaking to upstream - решение === |
Версия 15:51, 26 октября 2023
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.