52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
|
|
from saml2 import BINDING_SOAP, BINDING_HTTP_REDIRECT, NAME_FORMAT_URI
|
|
BASE = "http://localhost:8089/"
|
|
|
|
try:
|
|
from saml2.sigver import get_xmlsec_binary
|
|
xmlsec_path = get_xmlsec_binary(["/opt/local/bin"])
|
|
except ImportError:
|
|
xmlsec_path = '/usr/bin/xmlsec1'
|
|
|
|
CONFIG={
|
|
"service":{
|
|
"aa":{
|
|
"endpoints" : {
|
|
"attribute_service" : [(BASE + "as", BINDING_HTTP_REDIRECT)],
|
|
"single_logout_service": [(BASE+"slo", BINDING_SOAP)]
|
|
},
|
|
"release_policy": {
|
|
"default": {
|
|
"lifetime": {"minutes":15},
|
|
"attribute_restrictions": None, # means all I have
|
|
"name_form": NAME_FORMAT_URI,
|
|
},
|
|
},
|
|
"subject_data": "aa.db",
|
|
}
|
|
},
|
|
"entityid" : BASE+ "aa",
|
|
"name" : "Rolands AA",
|
|
"debug" : 1,
|
|
"key_file" : "test.key",
|
|
"cert_file" : "test.pem",
|
|
#"xmlsec_binary" : xmlsec_path,
|
|
"metadata": {
|
|
"local": ["metadata.xml", "vo_metadata.xml"],
|
|
},
|
|
"attribute_map_dir" : "attributemaps",
|
|
"organization": {
|
|
"name": "Exempel AB",
|
|
"display_name": [("Exempel AB","se"),("Example Co.","en")],
|
|
"url":"http://www.example.com/roland",
|
|
},
|
|
"contact_person": [{
|
|
"given_name":"John",
|
|
"sur_name": "Smith",
|
|
"email_address": ["john.smith@example.com"],
|
|
"contact_type": "technical",
|
|
},
|
|
],
|
|
}
|
|
|