-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathreference.conf
60 lines (55 loc) · 991 Bytes
/
reference.conf
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
akka.http.session {
cookie {
name = "_sessiondata"
domain = none
path = /
secure = false
http-only = true
same-site = Lax
}
header {
send-to-client-name = "Set-Authorization"
get-from-client-name = "Authorization"
}
max-age = 7 days
encrypt-data = false
jws {
alg = "HS256"
}
jwt {}
csrf {
cookie {
name = "XSRF-TOKEN"
domain = none
path = /
secure = false
http-only = false
same-site = Lax
}
submitted-name = "X-XSRF-TOKEN"
}
refresh-token {
cookie {
name = "_refreshtoken"
domain = none
path = /
secure = false
http-only = true
same-site = Lax
}
header {
send-to-client-name = "Set-Refresh-Token"
get-from-client-name = "Refresh-Token"
}
max-age = 30 days
remove-used-token-after = 5 seconds
}
token-migration {
v0-5-2 {
enabled = false
}
v0-5-3 {
enabled = false
}
}
}