0e74bf0c4441cfff7d93a4eb012011da8a87cb2d
[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
4 METADATA_FILE="/usr/local/etc/moonshot/metadata.xml"
5
6 DEBUG=0
7
8 # Should the SP sign the request ?
9 SIGN=False
10
11 # This is needed in order to pick information about the right IdP from the
12 # metadata file. This must be the entity ID of the IdP not an endpoint
13 IDP_ENTITYID = "http://example.com/idp"
14
15 # The password that should be used when authenticating with the IdP
16 # This password will be used disregarding which user it is.
17
18 PASSWD = ""
19
20 # If you don't want to used Basic-Auth you can place the username in a
21 # header. This defines the header name
22
23 USERNAME_HEADER = "X-Moonshot-Username"