Files
deb-python-pysaml2/tests/disco_conf.py
2013-05-06 14:11:42 +02:00

25 lines
523 B
Python

from saml2.extension.idpdisc import BINDING_DISCO
from pathutils import full_path
BASE = "http://localhost:8088"
CONFIG = {
"entityid" : "%s/disco.xml" % BASE,
"name" : "Rolands Discoserver",
"service": {
"ds": {
"endpoints" : {
"disco_service": [
("%s/disco" % BASE, BINDING_DISCO),
]
},
},
},
"debug" : 1,
"xmlsec_binary" : None,
"metadata": {
"local": [full_path("servera.xml")],
},
}