Use Apache authentication in Django without popups

I use Apache to authenticate users for Django, but I would like to do this without the pop-up form that Apache uses in its basic configuration.

How to insert page login form using Apache for authentication?

That is, I need a page with the inscription "Please log in" and provide a form requesting a username and password and passes this information to Apache for authentication. (Of course, I would do it over an SSL connection).

+3
source share
2 answers

, django mod_python mod_wsgi .

django trac mod_wsgi.

.

+1

Source: https://habr.com/ru/post/1746390/


All Articles