Why is my console closing after a certain time?
Was this helpful?
This could be related to a time out setting in your reverse proxy and can be changed. Below are some examples of how this can be done for nginx based proxies.
In below examples, change the value 3600 to match your requirement.
Nginx Server:
add the following to the nginx.conf file.
proxy_read_timeout 3600;Nginx Proxy Manager:
Edit the proxy host that you need to change and add proxy_read_timeout 3600; as below.

Nginx Ingress Controller (Kubernetes)
You need to add the following annotation to the Ingress object
nginx.ingress.kubernetes.io/proxy-read-timeout: 3600
Was this helpful?
Was this helpful?