Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Make sure Increase proxy Idle time approx. 1h (i.e. 3600 seconds) to run long running tasks on UI like reports and on-demand clean ups.

Apache

Code Block
ProxyPass        / http://localhost:8080/ timeout=3600
ProxyPassReverse / http://localhost:8080/ timeout=3600

Nginx

Code Block
server{
   ...
   proxy_read_timeout 3600;
   proxy_connect_timeout 3600;
   proxy_send_timeout 3600; 
   ...
}

GCP

...