<div bgcolor="#FFFFFF" text="#000000">
    Hi,<br>
    <br>
    I'm running OpenIndiana 151a server then now I'd like to build the
    web service with nginx. Briefly, my scenario is: one central server installed a few website in virtual machines, and there is a different real machine that stores static contents. I want nginx in central server will be the reverse proxy (get idea from <a href="http://tumblr.intranation.com/post/766288369/using-nginx-reverse-proxy">http://tumblr.intranation.com/post/766288369/using-nginx-reverse-proxy</a>). <br>
<br>For example, if someone open website <a href="http://a.com">a.com</a>, it will be redirected to <a href="http://10.0.0.2:8001">10.0.0.2:8001</a>, and if other go to <a href="http://b.com">b.com</a> it will be redirected to <a href="http://10.0.0.3:8001">10.0.0.3:8001</a>, etc ...<br>
<br>server {<br>    listen       80;<br>    server_name  <a href="http://a.com">a.com</a>;<br><br>    location / {<br>        proxy_pass         <a href="http://10.0.0.2:8001">http://10.0.0.2:8001</a>;<br>        proxy_redirect     off;<br>
        server_name_in_redirect off;<br>    }<br>}<br><br>Nginx works fine, but I don't know how to rewrite/redirect the URL looks like: <a href="http://a.com/something">http://a.com/something</a> becomes <a href="http://a.com/something/">http://a.com/something/</a> <br>
<br>If someone open the link <a href="http://a.com/something">http://a.com/something</a> nginx can't serve it then return the error message that says "<a href="http://a.com:8001/something">http://a.com:8001/something</a>" unreachable.<br>
<br>If you have any advice, please tell. It's highly appreciated.<br><br>Thanks,<br>
  </div>