Re: Django Development server inaccessible from the browser

2017-11-24 Thread Dylan Reinhold
Is your development server the same machine you are running your browser from? If not you don't want to use localhost, you need to user the IP/domain name of the development server. What is the error you get in the browser? Dylan On Fri, Nov 24, 2017 at 2:47 AM, Harish Oraon

Re: Django Development server inaccessible from the browser

2017-11-24 Thread Harish Oraon
This might be your settings, please confirm DEBUG=False ALLOWED_HOST = [] Try these two a) DEBUG = True ALLOWED_HOST = [] b) DEBUG = False ALLOWED_HOST = ['localhost', '127.0.0.1',] On Friday, 24 November 2017 15:42:22 UTC+5:30, ngn zone wrote: > > Hello all, > > I have a