[Answer]-Visit webpage hosted on ubuntu server in a local network

0👍

You need to serve it. There are a number of ways to do this, but my preferred method is to use Nginx as a reverse proxy server for gunicorn. This is a good tutorial for that.

1👍

Are you running the development server using manage.py?

If so, you should start the server using:

python manage.py runserver 0.0.0.0:8000

This will allow the development server to be visited by ips on all interfaces instead of just localhost.

Leave a comment