X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?a=blobdiff_plain;f=plgng%2Fsettings.py;h=d16396c07620270658ca559acddb43623363b705;hb=7f31f6b03f768014d3f14b309277d32a7f82ce28;hp=797169029785d715e103df83d9df0916d7887d94;hpb=52e1db7e850a63b8271e348c487bd60853ed73e8;p=qcg-portal.git diff --git a/plgng/settings.py b/plgng/settings.py index 7971690..d16396c 100644 --- a/plgng/settings.py +++ b/plgng/settings.py @@ -43,6 +43,7 @@ INSTALLED_APPS = ( 'django.contrib.staticfiles', 'django.contrib.webdesign', 'qcg', + 'django_openid_auth', ) MIDDLEWARE_CLASSES = ( @@ -92,3 +93,31 @@ USE_TZ = True # https://docs.djangoproject.com/en/1.7/howto/static-files/ STATIC_URL = '/static/' + + +# Authentication + +AUTHENTICATION_BACKENDS = ( + 'django_openid_auth.auth.OpenIDBackend', + 'django.contrib.auth.backends.ModelBackend', +) + +LOGIN_URL = 'openid-login' +LOGIN_REDIRECT_URL = '/jobs/' + +# If set, always use this as the identity URL rather than asking the +# user. This only makes sense if it is a server URL. +OPENID_SSO_SERVER_URL = 'https://openid.plgrid.pl/gateway' + +# Should users be created when new OpenIDs are used to log in? +OPENID_CREATE_USERS = True + +# Update user details from OpenID each time they log in +OPENID_UPDATE_DETAILS_FROM_SREG = True + +# Login will fail if no 'nickname' (username), or if the nickname +# conflicts with an existing user with a different openid identity url +OPENID_STRICT_USERNAMES = True + + +SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer'