- Language: en
17 results for add in version 5.0
-
How to authenticate against Django’s user database from Apache
- … add a location that you want only authenticated users to be able to view: WSGIScriptAlias …
-
How to authenticate using REMOTE_USER
- … add the django.contrib.auth.middleware.RemoteUserMiddleware to the MIDDLEWARE setting after the django.contrib.auth.middleware.AuthenticationMiddleware : MIDDLEWARE = [ "..." , "django.contrib.auth.middleware.AuthenticationMiddleware …
-
How to deploy with WSGI
- … add these lines at the bottom of wsgi.py : from helloworld.wsgi import HelloWorldApplication application = HelloWorldApplication ( application …
-
How to manage error reporting
- … add_view and user_change_password in the auth admin) to prevent the leaking of sensitive …
-
How to use Django with Uvicorn
- … add --reload to cause the server to reload any time a file is changed on disk …
-
How to configure and use logging
- … add a formatter entry to the handler’s dictionary referring to the formatter by name …
-
How to write custom lookups
- … add an index on abs(change) which would allow these queries to be very efficient …