-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.conf.example
37 lines (28 loc) · 962 Bytes
/
app.conf.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[app]
expected_issuer = max
expected_audience = uzipoc_register
jwt_priv_key_path = secrets/nl-uzipoc-register-api.key
# Pub key to validate Signed UZI ID's
jwt_pub_key_path = secrets/nl-uzipoc-register-api.pub
jwt_crt_path = secrets/nl-uzipoc-register-api.crt
max_crt_path = secrets/nl-rdo-max-private.crt
login_controller_session_url = http://localhost:8001/session
register_path = mock_register.json
# number of days set for userinfo token to expire
default_zsm_validity_in_days = 14
[saml]
xml_templates_path = saml/templates/xml
sp_settings_path = saml/idp/settings.json
[uvicorn]
# The host to be running on
host = 0.0.0.0
port = 8002
# Are we running in debug mode? turns on auto-reload on code changes
reload = True
workers = 1
# Should we create an SSL connection through uvicorn?
use_ssl = False
# Setting for the SSL connection when enabled, defined by the use_ssl setting.
base_dir = secrets/ssl
cert_file = server.crt
key_file = server.key