I want to add load balancing on NGINX, I read the documentation on the website of NGINX and they told me to add
upstream backend {
least_conn;
server domain1.example.com
server domain2.example.com;
}
How could I add that code in the NGINX of my plesk?