Skip to content

Commit df1fda1

Browse files
committed
Add placeholders for JWT configuration
1 parent b92bfab commit df1fda1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Api/appsettings.Development.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
}
1717
},
1818
"JwtSettings": {
19-
"Key": "YourSuperSecretKey123!",
20-
"Issuer": "DotnetFoundation",
21-
"Audience": "DotnetFoundationUsers",
19+
"Key": "PLACEHOLDER_REPLACE_WITH_STRONG_KEY_MIN_32CHARS_BEFORE_USE",
20+
"Issuer": "YourApp",
21+
"Audience": "YourAppUsers",
2222
"ExpiryMinutes": 60
2323
},
2424
"AllowedHosts": "*",

src/Api/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
},
1818
"JwtSettings": {
19-
"Key": "YourSuperSecretKey123!",
19+
"Key": "PLACEHOLDER_REPLACE_WITH_STRONG_KEY_MIN_32CHARS_BEFORE_USE",
2020
"Issuer": "YourApp",
2121
"Audience": "YourAppUsers",
2222
"ExpiryMinutes": 60

0 commit comments

Comments
 (0)