diff options
Diffstat (limited to 'portal-gui/rpkigui/settings.py.in')
-rw-r--r-- | portal-gui/rpkigui/settings.py.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/portal-gui/rpkigui/settings.py.in b/portal-gui/rpkigui/settings.py.in index 178d6010..d9ae3fb4 100644 --- a/portal-gui/rpkigui/settings.py.in +++ b/portal-gui/rpkigui/settings.py.in @@ -66,7 +66,7 @@ MIDDLEWARE_CLASSES = ( 'django.contrib.auth.middleware.AuthenticationMiddleware', # uncomment if using apache basic/digest http auth - 'django.contrib.auth.middleware.RemoteUserMiddleware', + #'django.contrib.auth.middleware.RemoteUserMiddleware', # order is important here. if csrfmidware is put before condgetmidware, # the returned pages get truncated for some reason! @@ -104,7 +104,8 @@ TEMPLATE_CONTEXT_PROCESSORS = ( # uncomment if using apache basic/digest http auth AUTHENTICATION_BACKENDS = ( - 'django.contrib.auth.backends.RemoteUserBackend', + #'django.contrib.auth.backends.RemoteUserBackend', + 'django.contrib.auth.backends.ModelBackend', ) # Top of directory tree where rpki.conf, etc are stored for each |