-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathproxy_conf.yaml.example
71 lines (64 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
BASE: https://example.com
COOKIE_STATE_NAME: "SATOSA_STATE"
CONTEXT_STATE_DELETE: yes
STATE_ENCRYPTION_KEY: "asdASD123"
cookies_samesite_compat:
- ["SATOSA_STATE", "SATOSA_STATE_LEGACY"]
INTERNAL_ATTRIBUTES: "internal_attributes.yaml"
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)s] [%(levelname)s] [%(name)s.%(funcName)s] %(message)s"
handlers:
stdout:
class: logging.StreamHandler
stream: "ext://sys.stdout"
level: DEBUG
formatter: simple
syslog:
class: logging.handlers.SysLogHandler
address: "/dev/log"
level: DEBUG
formatter: simple
debug_file:
class: logging.FileHandler
filename: satosa-debug.log
encoding: utf8
level: DEBUG
formatter: simple
error_file:
class: logging.FileHandler
filename: satosa-error.log
encoding: utf8
level: ERROR
formatter: simple
info_file:
class: logging.handlers.RotatingFileHandler
filename: satosa-info.log
encoding: utf8
maxBytes: 10485760 # 10MB
backupCount: 20
level: INFO
formatter: simple
loggers:
satosa:
level: DEBUG
saml2:
level: DEBUG
oidcendpoint:
level: DEBUG
pyop:
level: DEBUG
oic:
level: DEBUG
root:
level: DEBUG
handlers:
- stdout