<div dir="ltr"><div>Hi everyone, </div><div><br></div><div>   I have 2 graphites running with uWSGI in two separated servers, both listening in the port 3031. In a third server I also have an nginx installed . In that nginx, I've this configuration:</div><div><br></div><div><div>upstream graphite {</div><div>        server <a href="http://10.0.2.22:3031">10.0.2.22:3031</a>;</div><div>}</div><div>upstream graphite2 {</div><div>        server <a href="http://10.0.2.21:3031">10.0.2.21:3031</a>;</div><div>}</div></div><div><br></div>server {<div>        listen 80;</div><div><br clear="all"><div><div>        location / {</div><div>                include uwsgi_params;</div><div>                uwsgi_pass graphite;</div><div>        }</div></div><div><br></div><div><div>        location /graphite02 {</div><div>                rewrite /graphite02/(.+) /$1 break;</div><div>                include uwsgi_params;</div><div>                uwsgi_pass      graphite2;</div><div>        }</div></div><div>}</div><div><br></div><div>My intention is:</div><div><br></div><div>* Every request <a href="http://nginx_ip/">http://nginx_ip/</a> goes to the first graphite</div><div>* Every request <a href="http://nginx_ip/graphite02/">http://nginx_ip/graphite02/</a> goes to the second one BUT as / not /graphite02</div><div><br></div><div>My configuration doesn't do what I need, instead every request <a href="http://nginx_ip/graphite02/">http://nginx_ip/graphite02/</a> goes to the FIRST graphite as / </div><div><br></div><div>Also, I've tried modifying this:</div><div><br></div><div>...</div><div><div>        location /graphite02 {</div><div>                uwsgo_param PATH_INFO /;</div><div>                include uwsgi_params;</div><div>                uwsgi_pass      graphite2;</div><div>        }</div></div><div>...</div><div><br></div><div>With no success. Can you help me to understand where is my problem? Perhaps I misunderstood completely the way that rewrites works.</div><div><br></div><div>Thanks!</div><div><br></div><div>-- <br></div><div class="gmail_signature"><div dir="ltr">-- Guido Accardo --<div><div style="font-family:arial;font-size:small">"... What we know is a drop, what we ignore is the ocean ..." Isaac Newton</div></div></div></div>
</div></div>