I set up a Django local server with Nginx, Gunicorn and Ubuntu following this tutorial: https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-14-04
I tested it on a local network and worked fine, if I accessed to 192.168.0.101 from any computer on the network I was able to see Nginx default page, and if I entered to 192.168.0.101:8000 I was able to see my Django app, but today I put the server on a new place in a new local network with a new router and tested it again, I entered to the assigned IP 192.168.0.102:8000 and Django app loaded fine but then I tried to access to 192.168.0.102 and the default page was from Apache2 Ubuntu default page instead of Nginx welcome default page, why that happened if my server was working fine with Nginx and Gunicorn?
Also I was able to access to the server using hostname from any computer (Windows, Mac OS X, Mint) without configuring it but now I can access with hostname only over WiFi, trying to access with Ethernet connection can't resolve the hostname.
I hope you can help me and explain why this happened and how to fix it.