Hello.
I’m using nginx as proxy to rancher GUI. It seems to work, until i try to download/edit .yml files.
Chrome giving me an error: net::ERR_INCOMPLETE_CHUNKED_ENCODING 200 (OK).
In nginx error log i get:
2019/04/15 11:49:23 [error] 26480#26480: *7 upstream prematurely closed connection while sending to client, client: 11.22.33.44, server: server.name, request: “GET /v3/project/c-lhfkr:p-mkbzk/pods/default:tomcat-6bb6b8d448-8rnps/yaml HTTP/1.1”, upstream: “https://92.168.100.15:443/v3/project/c-lhfkr:p-mkbzk/pods/default:tomcat-6bb6b8d448-8rnps/yaml”, host: “server.name”, referrer: “https://server.name/p/c-lhfkr:p-mkbzk/workload/deployment:default:tomcat”
Here is my nginx conf:
server { listen 443 ssl; server_name server.name; client_max_body_size 0; chunked_transfer_encoding on; ssl_certificate /home/ubuntu/.acme.sh/server.name/fullchain.cer; ssl_certificate_key /home/ubuntu/.acme.sh/server.name/server.name.key; location / { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_buffering off; proxy_pass https://192.168.100.15:443; }
If i open rancher GUI without using proxy - it works. But i believe that “upstream prematurely closed connection” means that rancher server closed connection. What can be done?