What are the limits for server-rendered websites?
Server-rendered sites handle ordinary request/response traffic: no WebSockets or other long-lived connections, requests should finish within about a minute, and large uploads should go straight to your storage provider rather than through a request body. Move long-running work — big reports, media processing — into a background job instead of a request.