Hi Rupam,
On 29/08/2018 17.44, Rupam Hazra wrote:
> I want to do on production but how .
> could you elaborate me because i am new in python
>
You shouldn't be using the development server in production. That is
quite clearly stated in the documentation for good reasons.
You could set up a web server that forwards HTTPS requests to the Django
development server, but that would require pretty much the same amount
of work as doing it the proper way and set up your Django app as WSGI
application as explained here:
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
Please just follow that guide instead.
Kind regards,
Kasper Laudrup