Support for HTTPS certificate verification or not.
[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"
24
25 # is the path of a file containing root CA certificates for SSL
26 # server certificate validation.
27
28 CA_CERTS = ""
29
30 # If disable_ssl_certificate_validation is true, SSL cert validation will
31 # not be performed.
32
33 DISABLE_SSL_CERTIFICATE_VALIDATION = True