1{
2 "cgroups": {
3 "v1": {
4 "auto_max_procs_enabled": false
5 }
6 },
7 "config": ["stub/hydra/hydra.yaml"],
8 "dsn": "sqlite:///var/lib/sqlite/db.sqlite?_fk=true",
9 "log": {
10 "format": "text",
11 "leak_sensitive_values": false,
12 "level": "info"
13 },
14 "oauth2": {
15 "expose_internal_errors": false,
16 "hashers": {
17 "bcrypt": {
18 "cost": 10
19 }
20 },
21 "include_legacy_error_fields": false,
22 "session": {
23 "encrypt_at_rest": true
24 }
25 },
26 "oidc": {
27 "subject_identifiers": {
28 "enabled": [
29 "pairwise",
30 "public"
31 ],
32 "pairwise": {
33 "salt": "youReallyNeedToChangeThis"
34 }
35 }
36 },
37 "secrets": {
38 "system": [
39 "youReallyNeedToChangeThis"
40 ]
41 },
42 "serve": {
43 "admin": {
44 "access_log": {
45 "disable_for_health": false
46 },
47 "cors": {
48 "allow_credentials": true,
49 "allowed_headers": [
50 "Authorization",
51 "Content-Type"
52 ],
53 "allowed_methods": [
54 "POST",
55 "GET",
56 "PUT",
57 "PATCH",
58 "DELETE"
59 ],
60 "allowed_origins": [
61 "*"
62 ],
63 "debug": false,
64 "enabled": false,
65 "exposed_headers": [
66 "Content-Type"
67 ],
68 "max_age": 0,
69 "options_passthrough": false
70 },
71 "host": "",
72 "port": 4445,
73 "socket": {
74 "group": "",
75 "mode": 493,
76 "owner": ""
77 }
78 },
79 "cookies": {
80 "same_site_legacy_workaround": false,
81 "same_site_mode": "Lax"
82 },
83 "public": {
84 "access_log": {
85 "disable_for_health": false
86 },
87 "cors": {
88 "allow_credentials": true,
89 "allowed_headers": [
90 "Authorization",
91 "Content-Type"
92 ],
93 "allowed_methods": [
94 "POST",
95 "GET",
96 "PUT",
97 "PATCH",
98 "DELETE"
99 ],
100 "allowed_origins": [
101 "*"
102 ],
103 "debug": false,
104 "enabled": false,
105 "exposed_headers": [
106 "Content-Type"
107 ],
108 "max_age": 0,
109 "options_passthrough": false
110 },
111 "host": "",
112 "port": 4444,
113 "socket": {
114 "group": "",
115 "mode": 493,
116 "owner": ""
117 }
118 }
119 },
120 "strategies": {
121 "scope": "wildcard"
122 },
123 "tracing": {
124 "provider": "jaeger",
125 "providers": {
126 "jaeger": {
127 "local_agent_address": "jaeger:6832",
128 "sampling": {
129 "server_url": "http://jaeger:5778/sampling",
130 "type": "const",
131 "value": 1
132 }
133 }
134 }
135 },
136 "ttl": {
137 "access_token": "1h",
138 "auth_code": "10m",
139 "id_token": "1h",
140 "login_consent_request": "1h",
141 "refresh_token": "720h"
142 },
143 "urls": {
144 "consent": "http://127.0.0.1:3000/consent",
145 "login": "http://127.0.0.1:3000/login",
146 "logout": "http://127.0.0.1:3000/logout",
147 "self": {
148 "issuer": "http://127.0.0.1:4444"
149 }
150 },
151 "webfinger": {
152 "jwks": {
153 "broadcast_keys": [
154 "hydra.openid.id-token"
155 ]
156 }
157 }
158}
View as plain text