<div dir="ltr">Hi,<div><br></div><div>I'm beginner in nginx, and i have searched google and mailing list but no luck.</div><div><br></div><div>my nginx.conf:</div><div><br></div><div>http{</div><div>    server{</div><div>        listen 80;</div><div>        server_name <a href="http://example.com">example.com</a> <a href="http://www.example.com">www.example.com</a>;</div><div>        location / {</div><div>             proxy_pass http://127.0.0.1:aaaa/;</div><div>        }</div><div>   }</div><div>   server{</div><div>        listen 80;</div><div>        server_name <a href="http://subdomain.example.com">subdomain.example.com</a>;</div><div>        location / {</div><div>             proxy_pass http://127.0.0.1:bbbb/;</div><div>        }</div><div>   }</div><div>   #rest of the default config like acces log, etc</div><div>}</div><div><br></div><div><br></div><div><br></div><div>Problem is after adding server block for subdomain, both request (<a href="http://example.com">example.com</a>, <a href="http://subdomain.example.com">subdomain.example.com</a>) loading only <a href="http://example.com">example.com</a> in browser.</div><div>If i place subdomain server block listing as first one, both request (<a href="http://example.com">example.com</a>, <a href="http://subdomain.example.com">subdomain.example.com</a>) loading <a href="http://subdomain.example.com">subdomain.example.com</a> in browser.</div><div><br></div><div>Please suggest me what could be the problem.</div><div><br></div><div><br></div><div>Thanks in Advance!!</div><div><br></div><div><br></div><div><br></div><div>   </div></div>