<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from rtf -->
<style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<font face="Calibri" size="2"><span style="font-size:11pt;">
<div>Hi everyone,</div>
<div>I am starting to work with nginx to use it as a load balancer for a web service. Basically, what I am try to configure is something like:</div>
<div> </div>
<div>$  cat nginx.conf</div>
<div>…</div>
<div>http {</div>
<div> </div>
<div>           upstream load_balancer {</div>
<div>               server localhost:8080/Instance1;</div>
<div>               server localhost:8080/Instance2;</div>
<div>               server localhost:8080/Instance3;</div>
<div>       }</div>
<div> </div>
<div>       server {</div>
<div>               listen 81;</div>
<div>               server_name;</div>
<div>               location / {</div>
<div>                       proxy_pass <a href="http://load_balancer"><font color="blue"><u>http://load_balancer</u></font></a>;</div>
<div>               }</div>
<div>       }</div>
<div>}</div>
<div>…</div>
<div> </div>
<div>I would like nginx to manage the requests among the three instances above, depending on the load. Is it correctly defined? How can I test that my request are properly managed by nginx?</div>
<div>Thanks in advance,</div>
<div> </div>
<div>Cheers</div>
<div> </div>
<div><font face="Times New Roman" size="3"><span style="font-size:12pt;">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender
immediately and destroy it. <br>

As its integrity cannot be secured on the Internet, the Atos group liability cannot be triggered for the message content. Although the sender endeavors to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free
and will not be liable for any damages resulting from any virus transmitted. <br>

<br>

Este mensaje y los ficheros adjuntos pueden contener información confidencial destinada solamente a la(s) persona(s) mencionadas anteriormente y pueden estar protegidos por secreto profesional.
<br>

Si usted recibe este correo electrónico por error, gracias por informar inmediatamente al remitente y destruir el mensaje.
<br>

Al no estar asegurada la integridad de este mensaje sobre la red, Atos no se hace responsable por su contenido. Su contenido no constituye ningún compromiso para el grupo Atos, salvo ratificación escrita por ambas partes.
<br>

Aunque se esfuerza al máximo por mantener su red libre de virus, el emisor no puede garantizar nada al respecto y no será responsable de cualesquiera daños que puedan resultar de una transmisión de virus. </span></font></div>
</span></font>
</body>
</html>