diff options
Diffstat (limited to 'asgard')
-rw-r--r-- | asgard/settings.d/10-apps.conf | 4 | ||||
-rw-r--r-- | asgard/settings.d/20-saml.conf | 5 | ||||
-rw-r--r-- | asgard/venv.conf | 2 |
3 files changed, 10 insertions, 1 deletions
diff --git a/asgard/settings.d/10-apps.conf b/asgard/settings.d/10-apps.conf index 7095a27..a5a05f5 100644 --- a/asgard/settings.d/10-apps.conf +++ b/asgard/settings.d/10-apps.conf @@ -1,3 +1,4 @@ + INSTALLED_APPS += [ 'coip.extensions', 'coip.apps.name', @@ -7,5 +8,6 @@ INSTALLED_APPS += [ 'coip.apps.link', 'actstream', 'coip.apps.opensocial', - 'coip.apps.activitystreams' + 'coip.apps.activitystreams', + 'coip.apps.saml2' ] diff --git a/asgard/settings.d/20-saml.conf b/asgard/settings.d/20-saml.conf new file mode 100644 index 0000000..302ca5a --- /dev/null +++ b/asgard/settings.d/20-saml.conf @@ -0,0 +1,5 @@ + +METADATA = 'http://md.swamid.se/md/swamid-1.0.xml' +AUTH_PROFILE_MODULE = 'userprofile.UserProfile' +SAML_KEY = "/etc/ssl/private/ssl-cert-snakeoil.key" +SAML_CERT = "/etc/ssl/certs/ssl-cert-snakeoil.pem"
\ No newline at end of file diff --git a/asgard/venv.conf b/asgard/venv.conf index 1d23b1d..f0df25e 100644 --- a/asgard/venv.conf +++ b/asgard/venv.conf @@ -6,6 +6,7 @@ django-celery==2.3.3 django-extensions==0.5 django-form-utils==0.2.0 git+git://github.com/leifj/django-oauth2-lite.git +https://launchpad.net/pysaml2/main/0.4.2/+download/pysaml2-0.4.2.tar.gz django-tagging==0.3.1 httplib2==0.6.0 importlib==1.0.2 @@ -23,3 +24,4 @@ wadllib==1.1.4 wsgiref==0.1.2 PIL==1.1.7 django-activity-stream==0.3.9 +python-memcached |