What is the simplest way to make Django /admin/ urls accessible to localhost only?
Options I have thought of:
Is there a standard approach?
Thanks!
Id go for apache configuration:
<Location /admin>
Order Deny, Allow
Deny from all
Allow from 127.0.0.1
</Location>
HTH.