Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Heya @samwangler,
The errors I see from the log are
[progressive-notes] [2024-02-17 17:57:57] [Sat Feb 17 17:57:57.570812 2024] [proxy_fcgi:error] [pid 178:tid 139470863074880] [client 10.244.46.155:53844] AH01067: Failed to read FastCGI header
[progressive-notes] [2024-02-17 17:57:57] [Sat Feb 17 17:57:57.571408 2024] [proxy_fcgi:error] [pid 178:tid 139470863074880] (104)Connection reset by peer: [client 10.244.46.155:53844] AH01075: Error dispatching request to :
[progressive-notes] [2024-02-17 17:57:57] 10.244.46.155 - - [17/Feb/2024:17:57:23 +0000] "POST / HTTP/1.1" 503 299 "-" "insomnia/2023.5.8
This usually would mean a problem with the application you are hosting however can you post your configuration file just for us to be sure?
Heya, @samwangler
You can double-check if the PHP-FPM settings are not set to a low value, this will be for the max_execution_time and request_terminate_timeout
Another approach will be to use PHP Debugging tools like tools like Xdebug to identify performance bottlenecks. This can help pinpoint specific areas of your code that are causing delays.
Hope that this helps!