Recent laggy load problems
Posted: Sun Mar 08, 2026 7:47 am
I noticed that the website was acting very laggy lately. Sometimes pages would just hang, videos would never load to play and sometimes there was a total server failure to respond. I noticed my server was maxxing out with CPU usage too so I decided to investigate.
It turned out to be something to do with nginx, which is basically the engine of the server that provides files to users while balancing the load through various proxies. Basically it stops the server getting overloaded when multiple users visit the site and view content on it.
There was a severe bottleneck in the settings that was only allowing up to 1GB of data to be served at any given time so it was maxxing out and causing the server to be unresponsive. I have changed the soft limit to a much higher number, around 64GB.
After these changes the webpages seemed to respond properly. Let me know if you have been experiencing these problems or if the problem persists.
It turned out to be something to do with nginx, which is basically the engine of the server that provides files to users while balancing the load through various proxies. Basically it stops the server getting overloaded when multiple users visit the site and view content on it.
There was a severe bottleneck in the settings that was only allowing up to 1GB of data to be served at any given time so it was maxxing out and causing the server to be unresponsive. I have changed the soft limit to a much higher number, around 64GB.
After these changes the webpages seemed to respond properly. Let me know if you have been experiencing these problems or if the problem persists.