Files
deb-python-pysaml2/example/sp-wsgi/service_conf.py
2014-03-07 11:03:59 +01:00

16 lines
297 B
Python

from saml2.assertion import Policy
PORT = 8087
HTTPS = False
# Which groups of entity categories to use
POLICY = Policy(
{
"default": {"entity_categories": ["swamid", "edugain"]}
}
)
# HTTPS cert information
SERVER_CERT = "pki/ssl.crt"
SERVER_KEY = "pki/ssl.pem"
CERT_CHAIN = ""