File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed
Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1010
1111password :
1212 policy :
13- length : 12
14- characters : " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_+"
13+ length : ${INITIAL_PASSWORD_LENGTH:12}
14+ characters : ${INITIAL_PASSWORD_CHARACTERS: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_+}
1515
1616---
1717spring.config.activate.on-profile : local
Original file line number Diff line number Diff line change @@ -16,4 +16,20 @@ spring:
1616
1717swagger :
1818 server :
19- url : http://localhost:8080
19+ url : http://localhost:8080
20+
21+
22+ jwt :
23+ secret-key :
24+ access-token : exampleSecretKeyForTFSystemAccessSecretKeyTestForPadding
25+ temporary-token : exampleSecretKeyForTFSystemTemporarySecretKeyTestForPadding
26+ refresh-token : exampleSecretKeyTFSystemRefreshSecretKeyTestForPadding
27+ expiration-time :
28+ access-token : 43200000 # 1000 * 60 * 60 * 12 = 43200000 (12 hours)
29+ temporary-token : 300000
30+ refresh-token : 1209600000 # 1000 * 60 * 60 * 24 * 14 = 1209600000 (14 days)
31+
32+ password :
33+ policy :
34+ length : 12
35+ characters : " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_+"
You can’t perform that action at this time.
0 commit comments