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.
Hi @santhosh2116 ,
There are a few things I would like to suggest you in trying to optimize both your website and server. Let’s start with the server first
Before we start, make sure you create a snapshot of your Droplet in case something gets broken and you need to revert the changes
Server Optimization
1.I’ll recommend you to upgrade to the latest possible PHP version. At the time of writing it’s php7.4.
2.Start thinking about using PHP-FPM on your server. That’s it if you haven’t already installed and configured it.
Install a server side cache like Opcache.
Start using Redis for a much better performance. You’ll need to connect Redis with your website.
Website Optimization
Add Gzip and browser levarage caching in your .htaccess if using Apache and if you are using Nginx, add it in the configuration’s file.
Use PageSpeed Insight’s tool here - https://developers.google.com/speed/pagespeed/insights/ to try and determine what you can improve on the website itself.
Lastly, I’ll recommend using CloudFlare. It should help with accessing your website and caching it properly.
Regards, KDSys