Now. It comes down to the SSL Certificate. This is the main cause. I’ve been scratching my head since this morning because SSL is a must for the production and right now this is the cause of the slow response times. What should I do to reduce the response times caused with SSL integrated.
Can you run this command free -h and see how much available ram there is? Sometimes nginx keeps so many things on ram, you should reboot your nginx server(reboot server not nginx).
This is my conf file.
upstream backend {
least_conn;
server server1 weight=4;
server server2 weight=4;
server server3 weight=4;
}
server {
server_name mydomain;
location / {
proxy_pass http://backend/;
}
}