e67803fb9d88860d1b8d148e5dbf5ef2ca564860
[freeradius-pysaml2.git] / etc / ecp_config.py
1 # You shouldn't change this line unless you know what you are doing
2 CONFIG = 'pysaml_config'                # PySAML2 Configuration file name
3 #IDENTITY_CACHE = "identity_cache"
4 #STATE_CACHE = "state_cache"
5
6 METADATA_FILE="../idp/idp.xml"
7
8 DEBUG=0
9
10 # Should the SP sign the request ?
11 SIGN=False
12
13 # This is needed in order to pick information about the right IdP from the
14 # metadata file. This must be the entity ID of the IdP not an endpoint
15 IDP_ENTITYID = "http://example.com/idp"
16
17 # Attribute filters per service@hostname
18 # the key are GSS-Acceptor-Service-Name+':'+GSS-Acceptor-Host-Name
19 # and the attribute names are the so called friendly-names
20
21 ATTRIBUTE_FILTER = {
22     "ldap:example.com" : ["email", "givenName", "surname"],
23 }