forked from IdentityPython/SATOSA
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproxy_conf.yaml.example
43 lines (43 loc) · 1.07 KB
/
proxy_conf.yaml.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
38
39
40
41
42
43
#--- SATOSA Config ---#
BASE: https://example.com
INTERNAL_ATTRIBUTES: "internal_attributes.yaml"
COOKIE_STATE_NAME: "SATOSA_STATE"
CONTEXT_STATE_DELETE: yes
STATE_ENCRYPTION_KEY: "asdASD123"
CUSTOM_PLUGIN_MODULE_PATHS:
- "plugins/backends"
- "plugins/frontends"
- "plugins/micro_services"
BACKEND_MODULES:
- "plugins/backends/saml2_backend.yaml"
FRONTEND_MODULES:
- "plugins/frontends/saml2_frontend.yaml"
MICRO_SERVICES:
- "plugins/microservices/static_attributes.yaml"
LOGGING:
version: 1
formatters:
simple:
format: "[%(asctime)-19.19s] [%(levelname)-5.5s]: %(message)s"
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: simple
stream: ext://sys.stdout
info_file_handler:
class: logging.handlers.RotatingFileHandler
level: INFO
formatter: simple
filename: info.log
maxBytes: 10485760 # 10MB
backupCount: 20
encoding: utf8
loggers:
satosa:
level: DEBUG
handlers: [console]
propagate: no
root:
level: INFO
handlers: [info_file_handler]