'nginx 502'에 해당되는 글 1건

nginx 502 error,

Java 2023. 2. 14. 12:57

Nginx Error:

upstream prematurely closed connection while reading response header from upstream

upstream prematurely closed connection while reading response header from upstream

 

    server {
        listen 80;
        location / {
            proxy_pass http://proxy_service;
            proxy_http_version 1.1;  // upstream 보낼 때 http 1.1로 ... 
            proxy_connect_timeout 5;
.....
        }

 

http 1.0

http 1.1

http 2.0

관련해서는 mdn 참조

https://developer.mozilla.org/ko/docs/Web/HTTP/Basics_of_HTTP/Evolution_of_HTTP

반응형

'Java' 카테고리의 다른 글

apt로 설치한 docker update하기  (0) 2023.06.27
jsp page 접근시 session 생성  (0) 2023.04.11
string dateformat validation yyyy-mm-dd  (0) 2022.11.24
restapi @dateformat  (1) 2022.11.24
tomcat8 cookie 관련  (0) 2022.05.06
블로그 이미지

visualp

c#, java

,