Re: Adding a security concerned feature

2020-11-16 Thread Adam Johnson
Hi Shoury I agree that this is an easy thing to change to prevent discovery of the admin. I've done it on several projects, and I saw Will Vincent mentioned it in his recent article on security: https://learndjango.com/tutorials/django-best-practices-security Implementation-wise, perhaps we

Re: Adding a security concerned feature

2020-11-16 Thread Carles Pina i Estany
Hi Adam, Shoury, About '/admin' URL to not be routed to admin: I can't remember if this is documented in Django documentation (I can't find it right now). But a lot of documentation on the internet says to change, in urls.py, from path('admin/') to path('admin-something'). In my opinion the